| 1234567891011121314151617181920212223242526272829303132 |
- // Стандартная брендированная шапка
- .meyumed {
- padding: 0;
- text-align: center;
- text-transform: uppercase;
- position: relative;
- background-color: #fff;
- flex: none;
- border-bottom: 5px solid #aeaeae;
- &_logo {
- padding: 2rem 1rem 0;
- margin: auto;
- width: fit-content;
- border-radius: 2rem;
- img {
- height: 6rem;
- }
- }
- &_text {
- font-weight: 300;
- padding: 0.5em 0;
- font-size: 1rem;
- letter-spacing: 0.25em;
- color: #222;
- margin: 1em auto;
- max-width: 40em;
- }
- }
|