| 1234567891011121314151617181920212223242526272829303132333435 |
- // Стандартная брендированная шапка
- .unicraft_study_header {
- background-color: #fefefe;
- padding: 0;
- text-align: center;
- text-transform: uppercase;
- position: relative;
- background-image: linear-gradient(0deg, hsla(0, 0%, 0%, 0.5), hsla(0, 0%, 0%, 0.25)), url("//dd.unicraft.org/static/branding/unicraft/header/bg_dna.jpg");
- background-position: top, center;
- background-size: auto, cover;
- flex: none;
- border-bottom: 3px solid #2a77b2;
- &_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: #fff;
- margin: 1em auto;
- max-width: 40em;
- }
- }
|