base.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. html, body {
  2. height: 100%;
  3. margin: 0;
  4. }
  5. h1,
  6. h2,
  7. h3,
  8. h4,
  9. h5,
  10. h6 {
  11. font-weight: 800;
  12. font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  13. }
  14. ::-moz-selection {
  15. color: #fff;
  16. background: #0085A1;
  17. text-shadow: none;
  18. }
  19. ::selection {
  20. color: #fff;
  21. background: #0085A1;
  22. text-shadow: none;
  23. }
  24. #post-preview{
  25. color: black;
  26. }
  27. #post-preview:focus, #post-preview:hover {
  28. text-decoration: none;
  29. color: #0085A1;
  30. }
  31. #wrapper {
  32. min-height: 100%;
  33. margin-bottom: -60px;
  34. }
  35. #footer, #push {
  36. height: 60px;
  37. }
  38. header.masthead {
  39. margin-bottom: 50px;
  40. background: no-repeat center center;
  41. background-color: #868e96;
  42. background-attachment: fixed !important;
  43. position: relative;
  44. background-size: cover;
  45. height: calc(100vh);
  46. }
  47. header.masthead .overlay {
  48. position: absolute;
  49. top: 0;
  50. left: 0;
  51. height: 100%;
  52. width: 100%;
  53. background-color: #212529;
  54. opacity: 0.7;
  55. }
  56. header.masthead .page-heading,
  57. header.masthead .post-heading,
  58. header.masthead .site-heading {
  59. padding: 200px 0 150px;
  60. color: white;
  61. }
  62. @media only screen and (min-width: 768px) {
  63. header.masthead .page-heading,
  64. header.masthead .post-heading,
  65. header.masthead .site-heading {
  66. padding: 200px 0;
  67. }
  68. }
  69. header.masthead .page-heading,
  70. header.masthead .site-heading {
  71. text-align: center;
  72. }
  73. header.masthead .page-heading h1,
  74. header.masthead .site-heading h1 {
  75. font-size: 70px;
  76. margin-top: 0;
  77. }
  78. header.masthead .page-heading .subheading,
  79. header.masthead .site-heading .subheading {
  80. font-size: 24px;
  81. font-weight: 300;
  82. line-height: 1.1;
  83. display: block;
  84. margin: 10px 0 0;
  85. font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  86. }
  87. @media only screen and (min-width: 768px) {
  88. header.masthead .page-heading h1,
  89. header.masthead .site-heading h1 {
  90. font-size: 80px;
  91. }
  92. }
  93. header.masthead .post-heading h1 {
  94. font-size: 35px;
  95. }
  96. header.masthead .post-heading .meta,
  97. header.masthead .post-heading .subheading {
  98. line-height: 1.1;
  99. display: block;
  100. }
  101. header.masthead .post-heading .subheading {
  102. font-size: 24px;
  103. font-weight: 600;
  104. margin: 10px 0 30px;
  105. font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  106. }
  107. header.masthead .post-heading .meta {
  108. font-size: 20px;
  109. font-weight: 300;
  110. font-style: italic;
  111. font-family: 'Lora', 'Times New Roman', serif;
  112. }
  113. header.masthead .post-heading .meta a {
  114. color: #fff;
  115. }
  116. @media only screen and (min-width: 768px) {
  117. header.masthead .post-heading h1 {
  118. font-size: 55px;
  119. }
  120. header.masthead .post-heading .subheading {
  121. font-size: 30px;
  122. }
  123. }
  124. /*---------------------------------------
  125. Pre loader section
  126. -----------------------------------------*/
  127. .preloader {
  128. position: fixed;
  129. top: 0;
  130. left: 0;
  131. width: 100%;
  132. height: 100%;
  133. z-index: 99999;
  134. display: flex;
  135. flex-flow: row nowrap;
  136. justify-content: center;
  137. align-items: center;
  138. background: none repeat scroll 0 0 #ffffff;
  139. }
  140. .spinner {
  141. border: 1px solid transparent;
  142. border-radius: 5px;
  143. position: relative;
  144. }
  145. .spinner:before {
  146. content: '';
  147. box-sizing: border-box;
  148. position: absolute;
  149. top: 50%;
  150. left: 50%;
  151. width: 65px;
  152. height: 65px;
  153. margin-top: -10px;
  154. margin-left: -10px;
  155. border-radius: 50%;
  156. border: 1px solid #000000;
  157. border-top-color: #f9f9f9;
  158. animation: spinner .9s linear infinite;
  159. }
  160. @-webkit-@keyframes spinner {
  161. to {
  162. transform: rotate(360deg);
  163. }
  164. }
  165. @keyframes spinner {
  166. to {
  167. transform: rotate(360deg);
  168. }
  169. }