style.scss 606 B

12345678910111213141516171819202122232425262728293031
  1. .sptlab {
  2. flex: none;
  3. padding: 3rem;
  4. background: #f2f7fa;
  5. background-image: url("//dd.unicraft.org/static/branding/sptlab/header/bg.png");
  6. background-repeat: no-repeat;
  7. background-position: center;
  8. background-size: cover;
  9. position: relative;
  10. overflow: hidden;
  11. &_logo {
  12. display: block;
  13. margin: 0 auto;
  14. max-width: 70%;
  15. }
  16. &_img {
  17. display: block;
  18. position: absolute;
  19. bottom: 0;
  20. height: 80%;
  21. &--left {
  22. right: 85%;
  23. }
  24. &--right {
  25. left: 85%;
  26. }
  27. }
  28. }