Guest User

Untitled

a guest
Feb 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. /* ===========================
  2. * BASE
  3. ** =========================== */
  4.  
  5. * {
  6. padding: 0;
  7. margin: 0;
  8. box-sizing: border-box;
  9. color: #5f646a;
  10. font: 500 18px/1.4 "Prx Nova";
  11. vertical-align: baseline;
  12. border: none;
  13. }
  14.  
  15. section[class*="s-"] {
  16. padding-top: 75px;
  17. padding-bottom: 75px;
  18. }
  19.  
  20. *::selection {
  21. /*background: #fff35f;*/
  22. }
  23.  
  24. ol,
  25. ul,
  26. p {
  27. list-style-type: none;
  28. margin: 0;
  29. }
  30.  
  31. a {
  32. color: inherit;
  33. text-decoration: none;
  34. }
  35.  
  36.  
  37. /* SITE SPECIFIC
  38. ============= */
  39.  
  40. .headline-1,
  41. .headline-2,
  42. .headline-3,
  43. .headline-4 {
  44. }
  45.  
  46. .headline-1 {
  47. }
  48.  
  49. .headline-2 {
  50. }
  51.  
  52. .headline-3 {
  53. }
  54.  
  55. .headline-4 {
  56. }
  57.  
  58. .text-2 {
  59. }
  60.  
  61. .text-3 {
  62. }
  63.  
  64. .btn,
  65. .button {
  66. }
  67.  
  68. .btn:hover,
  69. .button:hover {
  70. }
  71.  
  72.  
  73. /* PRELOADER
  74. ========= */
  75.  
  76. .preloader {
  77. position: fixed;
  78. top: 0;
  79. bottom: 0;
  80. left: 0;
  81. right: 0;
  82. background: #fff;
  83. z-index: 3;
  84. }
  85.  
  86. .preloader .spinner {
  87. position: absolute;
  88. top: 50%;
  89. left: 50%;
  90. transform: translate(-50%, -50%);
  91. }
  92.  
  93. .preloader img {
  94. animation: preloader 1s;
  95. }
  96.  
  97. @keyframes preloader {
  98. from {
  99. transform: rotate(0deg);
  100. }
  101. to {
  102. transform: rotate(360deg);
  103. }
  104. }
  105.  
  106.  
  107. /* ===========================
  108. * FONTS
  109. ** =========================== */
  110.  
  111.  
  112. /* ===========================
  113. * GRID
  114. ** =========================== */
  115.  
  116. .container {
  117. width: 1200px;
  118. padding-left: 15px;
  119. padding-right: 15px;
  120. margin: auto;
  121. }
  122. @media (max-width: 1200px) {
  123. .container {
  124. width: 900px;
  125. }
  126. }
  127. @media (max-width: 900px) {
  128. .container {
  129. width: 720px;
  130. }
  131. }
  132. @media (max-width: 720px) {
  133. .container {
  134. width: 540px;
  135. }
  136. }
  137. @media (max-width: 540px) {
  138. .container {
  139. width: 100%;
  140. }
  141. }
  142.  
  143. .container-sm {
  144. width: 900px;
  145. padding-left: 15px;
  146. padding-right: 15px;
  147. margin: auto;
  148. box-sizing: border-box;
  149. }
  150. @media (max-width: 1200px) {
  151. .container-sm {
  152. width: 720px;
  153. }
  154. }
  155. @media (max-width: 900px) {
  156. .container-sm {
  157. width: 720px;
  158. }
  159. }
  160. @media (max-width: 720px) {
  161. .container-sm {
  162. width: 540px;
  163. }
  164. }
  165. @media (max-width: 540px) {
  166. .container-sm {
  167. width: 100%;
  168. }
  169. }
Add Comment
Please, Sign In to add comment