_global.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. body {
  2. @include body-font;
  3. background-image: linear-gradient(rgba(47, 23, 15, 0.65), rgba(47, 23, 15, 0.65)), url('../img/bg.jpg');
  4. background-attachment: fixed;
  5. background-position: center;
  6. background-size: cover;
  7. }
  8. h1,
  9. h2,
  10. h3,
  11. h4,
  12. h5,
  13. h6 {
  14. @include heading-font;
  15. }
  16. p {
  17. line-height: 1.75;
  18. }
  19. .text-faded {
  20. color: fade-out($white, 0.7);
  21. }
  22. .site-heading {
  23. margin-top: 5rem;
  24. margin-bottom: 5rem;
  25. text-transform: uppercase;
  26. line-height: 1;
  27. @include heading-font;
  28. .site-heading-upper {
  29. display: block;
  30. font-size: 2rem;
  31. font-weight: 800;
  32. }
  33. .site-heading-lower {
  34. font-size: 5rem;
  35. font-weight: 100;
  36. line-height: 4rem;
  37. }
  38. }
  39. .page-section {
  40. margin-top: 5rem;
  41. margin-bottom: 5rem;
  42. }
  43. .section-heading {
  44. text-transform: uppercase;
  45. .section-heading-upper {
  46. display: block;
  47. font-size: 1rem;
  48. font-weight: 800;
  49. }
  50. .section-heading-lower {
  51. display: block;
  52. font-size: 3rem;
  53. font-weight: 100;
  54. }
  55. }
  56. .bg-faded {
  57. background-color: fade-out($white, 0.15);
  58. }