style.scss 872 B

123456789101112131415161718192021222324252627282930313233
  1. .mosvodostroy {
  2. flex: none;
  3. margin: 1rem;
  4. user-select: none;
  5. background-image: url("//dd.unicraft.org/static/branding/mosvodostroy/header/bg.png");
  6. background-color: #205490;
  7. background-repeat: no-repeat;
  8. background-position: center;
  9. background-size: cover;
  10. border-radius: 1rem;
  11. overflow: hidden;
  12. &_logo {
  13. margin: -4rem auto;
  14. background: #fff;
  15. box-shadow: 0px 44px 250px 0px rgba(0, 0, 0, 0.77), 0 0 0 2rem rgba(255, 255, 255, 0.15);
  16. width: 20rem;
  17. height: 20rem;
  18. border-radius: 300px;
  19. display: flex;
  20. align-items: center;
  21. align-content: center;
  22. justify-self: center;
  23. img {
  24. object-fit: contain;
  25. object-position: center;
  26. display: block;
  27. flex: none;
  28. margin: auto;
  29. }
  30. }
  31. }