style.scss 638 B

1234567891011121314151617181920212223242526272829303132
  1. // Стандартная брендированная шапка
  2. .meyumed {
  3. padding: 0;
  4. text-align: center;
  5. text-transform: uppercase;
  6. position: relative;
  7. background-color: #fff;
  8. flex: none;
  9. border-bottom: 5px solid #aeaeae;
  10. &_logo {
  11. padding: 2rem 1rem 0;
  12. margin: auto;
  13. width: fit-content;
  14. border-radius: 2rem;
  15. img {
  16. height: 6rem;
  17. }
  18. }
  19. &_text {
  20. font-weight: 300;
  21. padding: 0.5em 0;
  22. font-size: 1rem;
  23. letter-spacing: 0.25em;
  24. color: #222;
  25. margin: 1em auto;
  26. max-width: 40em;
  27. }
  28. }