_home.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .home {
  2. &__landing {
  3. width: 100%;
  4. height: 600px;
  5. @include flexbox();
  6. @include align-items(center);
  7. @include justify-content(center);
  8. @media only screen and (max-width: 600px) {
  9. @include flex-direction(column);
  10. }
  11. &--img {
  12. margin: 0.5rem;
  13. }
  14. &--txt {
  15. margin: 0.5rem;
  16. .title {
  17. font-size: 44px;
  18. font-family: $title-font;
  19. }
  20. .text {
  21. font-size: 22px;
  22. }
  23. @media only screen and (max-width: 600px) {
  24. text-align: center;
  25. }
  26. }
  27. &--link {
  28. text-decoration: none !important;
  29. }
  30. }
  31. &__social {
  32. width: 100%;
  33. padding: 1rem 0;
  34. @include flexbox();
  35. @include justify-content(center);
  36. &--item {
  37. margin: 0 0.25rem;
  38. }
  39. }
  40. &__banner {
  41. width: 100%;
  42. padding: 0.75rem;
  43. @include flexbox();
  44. @include justify-content(center);
  45. &--wrapper {
  46. @include themify($themes) {
  47. background-color: themed('banner-background-color');
  48. }
  49. }
  50. }
  51. }