style.scss 886 B

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