You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.3 KiB

  1. .onboarding {
  2. background: linear-gradient(to bottom, mc('grey', '900') 0%, mc('grey', '700') 100%);
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. color: mc('grey', '50');
  9. &::before {
  10. content: '';
  11. display:block;
  12. width: 100%;
  13. height: 100%;
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. background-image: url('../static/svg/motif-blocks.svg');
  18. background-position: center center;
  19. background-repeat: repeat;
  20. background-size: 500px;
  21. z-index: 0;
  22. opacity: .75;
  23. animation: onboardingBgReveal 50s linear infinite;
  24. @include keyframes(onboardingBgReveal) {
  25. 0% {
  26. background-position-y: 0;
  27. }
  28. 100% {
  29. background-position-y: -2000px;
  30. }
  31. }
  32. }
  33. &-content {
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: center;
  37. align-items: center;
  38. z-index: 2;
  39. }
  40. img {
  41. width: 500px;
  42. filter: grayscale(100%) brightness(160%);
  43. margin-bottom: 3rem;
  44. z-index: 2;
  45. animation-duration: 3s;
  46. @include until($tablet) {
  47. width: 300px;
  48. }
  49. }
  50. h1 {
  51. font-size: 1.5rem;
  52. margin-bottom: 1rem;
  53. z-index: 2;
  54. }
  55. h2 {
  56. margin-bottom: 3rem;
  57. z-index: 2;
  58. }
  59. .v-btn {
  60. z-index: 2;
  61. }
  62. }