main.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. /* Space out content a bit */
  2. body {
  3. padding-top: 0;
  4. padding-bottom: 0;
  5. font-size: 19px;
  6. font-family: 'Alegreya', serif;
  7. }
  8. @media (min-width: 768px) {
  9. body {
  10. font-size: 22px;
  11. }
  12. }
  13. h1 {
  14. font-weight: 900;
  15. font-family: 'Lato', sans-serif;
  16. color: #63210d;
  17. }
  18. .hero h1 {
  19. color: white;
  20. }
  21. h2 {
  22. font-weight: 900;
  23. font-family: 'Lato', sans-serif;
  24. color: #63210d;
  25. }
  26. h3 {
  27. font-weight: 900;
  28. font-family: 'Lato', sans-serif;
  29. color: #63210d;
  30. }
  31. h4 {
  32. font-weight: 600;
  33. font-family: 'Lato', sans-serif;
  34. color: #63210d;
  35. }
  36. a, a:focus, a:visited {
  37. color: #d4566b;
  38. }
  39. a:hover {
  40. text-decoration: none;
  41. color: #eb7400;
  42. }
  43. p {
  44. margin: 0 0 30px;
  45. color: #444;
  46. }
  47. .intro {
  48. font-family: 'Lato', sans-serif;
  49. font-weight: 300;
  50. margin: 0 0 40px;
  51. }
  52. .stand-first {
  53. color: rgba(255,255,255,0.8);
  54. margin: 0;
  55. }
  56. /* queries for type */
  57. @media (min-width: 768px) {
  58. h1 {
  59. font-size: 60px;
  60. }
  61. .stand-first {
  62. font-size: 26px;
  63. }
  64. .intro {
  65. font-size: 30px;
  66. margin: 0 0 60px;
  67. }
  68. p {
  69. margin: 0 0 50px;
  70. }
  71. }
  72. img {
  73. display: block;
  74. width: 100%;
  75. margin: 0 0 30px;
  76. }
  77. @media (min-width: 768px) {
  78. img {
  79. margin: 0 0 50px;
  80. }
  81. }
  82. .nav {
  83. color: white;
  84. font-family: 'Lato', sans-serif;
  85. font-size: 16px;
  86. }
  87. .nav a {
  88. color: white;
  89. }
  90. .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  91. color: #fff;
  92. background-color: #d4566b;
  93. }
  94. /* Everything but the jumbotron gets side spacing for mobile first views */
  95. .footer {
  96. font-size: 16px;
  97. font-family: 'Lato', sans-serif;
  98. background-color: #63210d;
  99. padding: 20px 0;
  100. margin: 40px 0 0;
  101. }
  102. .footer p {
  103. color: rgba(255,255,255,0.7);
  104. margin: 0;
  105. }
  106. /* Custom page header */
  107. .header {
  108. padding-bottom: 20px;
  109. position: absolute;
  110. width: 100%;
  111. background-color: rgba(0,0,0,0.3);
  112. z-index: 10;
  113. }
  114. /* Make the masthead heading the same height as the navigation */
  115. .header h3 {
  116. margin-top: 0;
  117. margin-bottom: 0;
  118. line-height: 40px;
  119. }
  120. /* Custom page footer */
  121. .footer {
  122. padding-top: 19px;
  123. color: #777;
  124. border-top: 1px solid #e5e5e5;
  125. }
  126. .container {
  127. width: auto;
  128. padding-left: 20px;
  129. padding-right: 20px;
  130. }
  131. /* Customize container */
  132. @media (min-width: 768px) {
  133. .container {
  134. max-width: 1400px;
  135. padding-left: 40px;
  136. padding-right: 40px;
  137. }
  138. }
  139. .container-narrow > hr {
  140. margin: 30px 0;
  141. }
  142. /* Main marketing message and sign up button */
  143. .jumbotron {
  144. text-align: center;
  145. border-bottom: 1px solid #e5e5e5;
  146. }
  147. .jumbotron .btn {
  148. padding: 14px 24px;
  149. font-size: 21px;
  150. }
  151. /* Supporting marketing content */
  152. .marketing {
  153. margin: 40px 0;
  154. }
  155. .marketing p + h4 {
  156. margin-top: 28px;
  157. }
  158. /* Article title and hero image */
  159. .hero {
  160. background-size: cover;
  161. padding: 200px 0 30px 0;
  162. position: relative;
  163. margin: 0 0 30px;
  164. }
  165. @media screen and (min-width: 768px) {
  166. .hero {
  167. padding: 400px 0 60px 0;
  168. margin: 0 0 40px;
  169. }
  170. }
  171. .hero-gradient-mask {
  172. position: absolute;
  173. width: 100%;
  174. height: 100%;
  175. bottom: 0;
  176. background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.01) 1%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
  177. background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.01) 1%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
  178. background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.01) 1%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  179. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  180. }
  181. /* Logo */
  182. .logo, .logo:visited, .logo:focus {
  183. display: block;
  184. width: 100%;
  185. padding: 0;
  186. color: white;
  187. font-size: 30px;
  188. font-weight: 300;
  189. margin: 10px 0 10px;
  190. }
  191. .logo:hover {
  192. color: white;
  193. text-decoration: none;
  194. }
  195. blockquote {
  196. border-left: 5px solid #d4566b;
  197. margin: 0 0 50px;
  198. }
  199. blockquote p {
  200. font-size: 30px;
  201. margin: 0 0 10px;
  202. }
  203. cite {
  204. font-family: 'Lato', sans-serif;
  205. text-transform: uppercase;
  206. color: #888;
  207. font-size: 12px;
  208. font-style: normal;
  209. }
  210. /* Responsive: Portrait tablets and up */
  211. @media screen and (min-width: 768px) {
  212. /* Remove the padding we set earlier */
  213. .header,
  214. .marketing,
  215. .footer {
  216. padding-right: 0;
  217. padding-left: 0;
  218. }
  219. /* Space out the masthead */
  220. .header {
  221. margin-bottom: 30px;
  222. }
  223. /* Remove the bottom border on the jumbotron for visual effect */
  224. .jumbotron {
  225. border-bottom: 0;
  226. }
  227. }
  228. /* Responsive: Portrait tablets and up */
  229. @media screen and (min-width: 1024px) {
  230. }
  231. /* Menu dropdown hack */
  232. li.has-submenu a.allow-toggle {
  233. float: left;
  234. padding-right: 0;
  235. }
  236. .caret-custom {
  237. float: right;
  238. display: inline-block!important;
  239. padding: 15px 10px 15px 5px!important;
  240. }
  241. .caret-custom:after {
  242. content: "▼"!important;
  243. }
  244. /* Edd styling */
  245. .site-title {
  246. border-bottom: 1px #eee solid;
  247. }
  248. .site-title h1 {
  249. font-family: 'Alegreya', serif;
  250. font-size: 1.5em;
  251. margin-top: 10px;
  252. }
  253. .navbar-form {
  254. border: 1px solid #ddd;
  255. padding: 0;
  256. border-radius: 5px;
  257. margin-right: 0px;
  258. }
  259. .navbar-form .form-group .form-control {
  260. border: none;
  261. box-shadow: none!important;
  262. font-family: 'Lato', sans-serif;
  263. }
  264. .navbar-right button.btn.btn-default {
  265. margin-left: -10px;
  266. border: none;
  267. border-left: 1px solid #ddd;
  268. border-radius: 0;
  269. }
  270. .navbar-default {
  271. background-color: transparent;
  272. border-color: transparent;
  273. }
  274. .navbar-nav a {
  275. font-size: 14px;
  276. }
  277. .navbar-nav a span {
  278. font-size: 10px;
  279. }
  280. .navbar.navbar-default.navbar-custom {
  281. border-bottom: 1px #eee solid;
  282. }
  283. .navbar-nav > li:first-of-type > a {
  284. padding-left: 0;
  285. }
  286. .breadcrumb {
  287. background-color: transparent;
  288. font-size: 14px;
  289. }
  290. .breadcrumb>li+li:before {
  291. content: "\00BB";
  292. }