style.scss 689 B

123456789101112131415161718192021222324252627282930
  1. .magicprofi {
  2. flex: none;
  3. padding: 2rem;
  4. background-color: #eeeeee;
  5. background-image: url("//dd.unicraft.org/static/branding/magicprofi/header/bg.png");
  6. background-repeat: no-repeat;
  7. background-position: center right;
  8. background-size: auto 100%;
  9. padding-left: 10vw;
  10. position: relative;
  11. &::after {
  12. position: absolute;
  13. bottom: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 10px;
  17. flex: none;
  18. background-image: url("//dd.unicraft.org/static/branding/magicprofi/header/bg_border.png");
  19. background-repeat: repeat-x;
  20. background-position: center;
  21. background-size: auto 100%;
  22. content: '';
  23. }
  24. &_logo {
  25. display: block;
  26. margin: 0;
  27. }
  28. }