main.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  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. /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,e9e4dd+100 */
  8. background: rgb(255,255,255); /* Old browsers */
  9. background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(233,228,221,1) 100%); /* FF3.6-15 */
  10. background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(233,228,221,1) 100%); /* Chrome10-25,Safari5.1-6 */
  11. background: linear-gradient(135deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(233,228,221,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  12. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9e4dd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  13. }
  14. @media (min-width: 768px) {
  15. body {
  16. font-size: 22px;
  17. }
  18. }
  19. h1 {
  20. font-weight: 900;
  21. font-family: 'Lato', sans-serif;
  22. position: relative;
  23. }
  24. .hero h1 {
  25. color: white;
  26. }
  27. h2 {
  28. font-weight: 900;
  29. font-family: 'Lato', sans-serif;
  30. color: #63210d;
  31. }
  32. h3 {
  33. font-weight: 900;
  34. font-family: 'Lato', sans-serif;
  35. color: #63210d;
  36. }
  37. h4 {
  38. font-weight: 600;
  39. font-family: 'Lato', sans-serif;
  40. color: #63210d;
  41. font-size: 22px;
  42. }
  43. a, a:focus, a:visited {
  44. color: #d4566b;
  45. text-decoration: none;
  46. }
  47. a:hover {
  48. text-decoration: none;
  49. color: #eb7400;
  50. }
  51. a.btn {
  52. display: inline-block;
  53. background-color: #d4566b;
  54. color: white;
  55. font-family: 'Lato', sans-serif;
  56. padding: 15px 20px;
  57. font-size: 16px;
  58. text-transform: uppercase;
  59. letter-spacing: 0.15em;
  60. font-weight: 300;
  61. }
  62. a.btn:hover {
  63. background-color: #eb7400;
  64. color: white;
  65. }
  66. input {
  67. border-radius: 3px;
  68. border: none;
  69. font-size: 18px;
  70. padding: 10px;
  71. width: 100%;
  72. }
  73. p {
  74. margin: 0 0 30px;
  75. color: #444;
  76. }
  77. .intro {
  78. font-family: 'Lato', sans-serif;
  79. font-weight: 300;
  80. margin: 0 0 40px;
  81. font-size: 22px;
  82. }
  83. .stand-first {
  84. color: rgba(255,255,255,0.8);
  85. margin: 0;
  86. }
  87. /* queries for type */
  88. @media (min-width: 768px) {
  89. h1 {
  90. font-size: 60px;
  91. }
  92. .stand-first {
  93. font-size: 26px;
  94. }
  95. .intro {
  96. font-size: 30px;
  97. margin: 0 0 60px;
  98. }
  99. p {
  100. margin: 0 0 50px;
  101. }
  102. }
  103. ul {
  104. margin: 0 0 30px;
  105. }
  106. @media (min-width: 768px) {
  107. ul {
  108. margin: 0 0 50px;
  109. }
  110. }
  111. figure {
  112. margin: 0 0 30px;
  113. position: relative;
  114. }
  115. @media (min-width: 768px) {
  116. figure {
  117. margin: 0 0 50px;
  118. }
  119. }
  120. figcaption {
  121. background-color: rgba(99,33,13,0.8);
  122. position: absolute;
  123. width: 75%;
  124. left: 0;
  125. bottom: 0;
  126. padding: 10px;
  127. color: white;
  128. font-family: 'Lato', sans-serif;
  129. font-size: 16px;
  130. font-weight: 300;
  131. }
  132. img {
  133. display: block;
  134. width: 100%;
  135. }
  136. .search {
  137. margin: 15px 0 0 0;
  138. display: none;
  139. position: relative;
  140. }
  141. @media (min-width: 768px) {
  142. .search {
  143. float: right;
  144. margin: 0 0 0 30px;
  145. display: inline-block;
  146. }
  147. }
  148. .search-icon {
  149. position: absolute;
  150. display: block;
  151. width: 20px;
  152. height: 20px;
  153. top: 10px;
  154. right: 10px;
  155. display: inline-block;
  156. }
  157. .search-icon svg {
  158. fill: #d4566b;
  159. width: 20px;
  160. height: 20px;
  161. }
  162. nav {
  163. margin: 15px 0 5px;
  164. display: none;
  165. }
  166. @media (min-width: 768px) {
  167. nav {
  168. margin: 15px 0 0 0;
  169. border-top: 1px solid rgba(255,255,255,0.1);
  170. display: block;
  171. }
  172. }
  173. .nav-pills>li+li {
  174. margin-left: 0;
  175. }
  176. .nav-pills>li>a {
  177. color: white;
  178. border-top: 1px solid transparent;
  179. border-radius: 0;
  180. text-transform: uppercase;
  181. letter-spacing: 0.15em;
  182. font-weight: 300;
  183. padding: 10px 10px;
  184. font-size: 11px;
  185. color: white;
  186. font-family: 'Lato', sans-serif;
  187. margin-top: -1px;
  188. }
  189. @media (min-width: 768px) {
  190. .nav-pills>li>a {
  191. padding: 10px 20px;
  192. font-size: 14px;
  193. }
  194. }
  195. .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover,
  196. .nav-pills>li.active, .nav-pills>li:hover, .breadcrumb>li+li:hover:before,
  197. .nav>li>a:focus, .nav>li>a:hover {
  198. color: #d4566b;
  199. background-color: transparent;
  200. border-top: 1px solid #d4566b;
  201. font-weight: 600;
  202. }
  203. .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  204. background-color: transparent;
  205. border-top: 1px solid #d4566b;
  206. }
  207. .dropdown-menu {
  208. background-color: rgba(25,17,18,1);
  209. border-radius: 0;
  210. border: transparent;
  211. }
  212. .dropdown-menu > li> a {
  213. border-bottom: 1px solid #371c19;
  214. color: #fff;
  215. font-family: 'Lato', sans-serif;
  216. padding: 10px 20px;
  217. }
  218. .dropdown-menu > li> a:hover {
  219. background-color: transparent;
  220. color: #d4566b;
  221. }
  222. /* Everything but the jumbotron gets side spacing for mobile first views */
  223. .footer {
  224. font-size: 16px;
  225. font-family: 'Lato', sans-serif;
  226. padding: 20px 0;
  227. margin: 40px 0 0;
  228. font-weight: 300;
  229. background-color: white;
  230. }
  231. .footer p {
  232. margin: 0;
  233. }
  234. /* Custom page header */
  235. .header {
  236. padding: 15px 0 15px;
  237. /* position: absolute;*/
  238. width: 100%;
  239. background: rgb(25,17,18); /* Old browsers */
  240. background: -moz-linear-gradient(-45deg, rgba(25,17,18,1) 0%, rgba(55,28,25,1) 100%); /* FF3.6-15 */
  241. background: -webkit-linear-gradient(-45deg, rgba(25,17,18,1) 0%,rgba(55,28,25,1) 100%); /* Chrome10-25,Safari5.1-6 */
  242. background: linear-gradient(135deg, rgba(25,17,18,1) 0%,rgba(55,28,25,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  243. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191112', endColorstr='#371c19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  244. z-index: 10;
  245. }
  246. /* Make the masthead heading the same height as the navigation */
  247. .header h3 {
  248. margin-top: 0;
  249. margin-bottom: 0;
  250. line-height: 40px;
  251. }
  252. /* Custom page footer */
  253. .footer {
  254. padding-top: 19px;
  255. color: #777;
  256. }
  257. .container {
  258. width: auto;
  259. padding-left: 20px;
  260. padding-right: 20px;
  261. }
  262. /* Customize container */
  263. @media (min-width: 768px) {
  264. .container {
  265. max-width: 1400px;
  266. padding-left: 40px;
  267. padding-right: 40px;
  268. }
  269. }
  270. .container-narrow > hr {
  271. margin: 30px 0;
  272. }
  273. /* Main marketing message and sign up button */
  274. .jumbotron {
  275. text-align: center;
  276. border-bottom: 1px solid #e5e5e5;
  277. }
  278. .jumbotron .btn {
  279. padding: 14px 24px;
  280. font-size: 21px;
  281. }
  282. /* Supporting marketing content */
  283. .marketing {
  284. margin: 40px 0;
  285. }
  286. .marketing p + h4 {
  287. margin-top: 28px;
  288. }
  289. /* Article title and hero image */
  290. .hero {
  291. background-size: cover;
  292. background-position: center;
  293. padding: 200px 0 30px 0;
  294. position: relative;
  295. margin: 0 0 30px;
  296. }
  297. @media screen and (min-width: 768px) {
  298. .hero {
  299. padding: 400px 0 60px 0;
  300. margin: 0 0 40px;
  301. }
  302. }
  303. .hero-gradient-mask {
  304. position: absolute;
  305. width: 100%;
  306. height: 100%;
  307. bottom: 0;
  308. 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 */
  309. 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 */
  310. 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+ */
  311. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  312. }
  313. /* Logo */
  314. .logo, .logo:visited, .logo:focus {
  315. display: inline-block;
  316. padding: 0;
  317. color: white;
  318. font-size: 30px;
  319. font-weight: 300;
  320. margin: 0 0 0;
  321. }
  322. .logo:hover {
  323. color: #d4566b;
  324. text-decoration: none;
  325. }
  326. blockquote {
  327. border-left: 5px solid #d4566b;
  328. margin: 0 0 50px;
  329. }
  330. blockquote p {
  331. font-size: 30px;
  332. margin: 0 0 10px;
  333. }
  334. cite {
  335. font-family: 'Lato', sans-serif;
  336. text-transform: uppercase;
  337. color: #888;
  338. font-size: 12px;
  339. font-style: normal;
  340. letter-spacing: 0.15em;
  341. }
  342. /* Responsive: Portrait tablets and up */
  343. @media screen and (min-width: 768px) {
  344. /* Remove the padding we set earlier */
  345. .header,
  346. .marketing,
  347. .footer {
  348. padding-right: 0;
  349. padding-left: 0;
  350. }
  351. /* Remove the bottom border on the jumbotron for visual effect */
  352. .jumbotron {
  353. border-bottom: 0;
  354. }
  355. }
  356. /* Responsive: Portrait tablets and up */
  357. @media screen and (min-width: 1024px) {
  358. }
  359. /* Menu dropdown hack */
  360. li.has-submenu a.allow-toggle {
  361. float: left;
  362. padding-right: 0;
  363. }
  364. .caret-custom {
  365. float: right;
  366. display: inline-block!important;
  367. padding: 10px 10px 15px 5px!important;
  368. }
  369. .caret-custom:after {
  370. content: "▼"!important;
  371. }
  372. /* Edd styling */
  373. .site-title {
  374. border-bottom: 1px #eee solid;
  375. }
  376. .site-title h1 {
  377. font-family: 'Alegreya', serif;
  378. font-size: 1.5em;
  379. margin-top: 10px;
  380. }
  381. .navbar-form {
  382. border: 1px solid #ddd;
  383. padding: 0;
  384. border-radius: 5px;
  385. margin-right: 0px;
  386. }
  387. .navbar-form .form-group .form-control {
  388. border: none;
  389. box-shadow: none!important;
  390. font-family: 'Lato', sans-serif;
  391. }
  392. .navbar-right button.btn.btn-default {
  393. margin-left: -10px;
  394. border: none;
  395. border-left: 1px solid #ddd;
  396. border-radius: 0;
  397. }
  398. .navbar-default {
  399. background-color: transparent;
  400. border-color: transparent;
  401. }
  402. .navbar-nav a {
  403. font-size: 14px;
  404. }
  405. .navbar-nav a span {
  406. font-size: 10px;
  407. }
  408. .navbar.navbar-default.navbar-custom {
  409. border-bottom: 1px #eee solid;
  410. }
  411. .nav-pills> li:first-of-type > a {
  412. padding-left: 0;
  413. }
  414. .breadcrumb {
  415. background-color: transparent;
  416. font-family: 'Lato', sans-serif;
  417. font-size: 14px;
  418. }
  419. .breadcrumb>li+li:before {
  420. content: "\00BB";
  421. }