demo.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @import "demo/reset";
  2. @import "demo/variables";
  3. @import "demo/helpers/mixins";
  4. @import "demo/helpers/grid";
  5. @import "demo/helpers/shortcuts";
  6. @import "demo/grid";
  7. @import "demo/typo";
  8. body {
  9. background: $background-color;
  10. font-family: $base-font-family;
  11. font-size: $base-font-size;
  12. line-height: $base-line-height;
  13. color: $text-color;
  14. }
  15. header#header {
  16. background: $main-color;
  17. color: #FFD270;
  18. font-family: $headings-font-family;
  19. font-weight: 700;
  20. letter-spacing: $headings-letter-spacing;
  21. text-align: center;
  22. font-size: 70px;
  23. line-height: 60px;
  24. padding: 50px 30px;
  25. margin: 0 0 30px 0;
  26. h1 {
  27. color: #FFD270;
  28. font-size: 70px;
  29. line-height: 90px;
  30. font-weight: 700;
  31. &::after {
  32. background: transparentize(#FFD270, 0.25);
  33. }
  34. }
  35. h2 {
  36. color: transparentize(#FFD270, 0.5);
  37. }
  38. }
  39. footer#footer {
  40. background: #DDD;
  41. color: #888;
  42. padding: 30px 0;
  43. margin-top: 30px;
  44. a {
  45. &, &:visited {
  46. color: #888;
  47. }
  48. }
  49. }
  50. label {
  51. font-weight: bold;
  52. display: block;
  53. margin-bottom: 5px;
  54. }
  55. p.help {
  56. color: #999;
  57. }
  58. #toggleDropify {
  59. font-size: 12px;
  60. text-transform: uppercase;
  61. background: #DDD;
  62. color: #888;
  63. font-weight: bold;
  64. border: 0;
  65. padding: 6px 10px;
  66. border-radius: 4px;
  67. margin-left: 10px;
  68. transition: background 0.1s linear;
  69. &:hover {
  70. background: #EEE;
  71. }
  72. }
  73. @media (max-width: 480px) {
  74. header#header {
  75. padding: 30px 15px;
  76. h1 {
  77. font-size: 44px;
  78. line-height: 70px;
  79. padding-bottom: 15px;
  80. margin-bottom: 15px;
  81. }
  82. h2 {
  83. font-size: 20px;
  84. }
  85. }
  86. }