main.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157
  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. min-height: 100vh;
  14. }
  15. @media (min-width: 768px) {
  16. body {
  17. font-size: 22px;
  18. }
  19. }
  20. h1 {
  21. font-weight: 300;
  22. font-family: 'Lato', sans-serif;
  23. position: relative;
  24. }
  25. .hero h1 {
  26. color: white;
  27. }
  28. h2 {
  29. font-weight: 900;
  30. font-family: 'Lato', sans-serif;
  31. color: #63210d;
  32. }
  33. h3 {
  34. font-weight: 900;
  35. font-family: 'Lato', sans-serif;
  36. color: #63210d;
  37. }
  38. h4 {
  39. font-weight: 600;
  40. font-family: 'Lato', sans-serif;
  41. color: #63210d;
  42. font-size: 22px;
  43. }
  44. a, a:focus, a:visited {
  45. color: #d4566b;
  46. text-decoration: none;
  47. }
  48. a:hover {
  49. text-decoration: none;
  50. color: #eb7400;
  51. }
  52. a.btn {
  53. display: inline-block;
  54. background-color: #d4566b;
  55. color: white;
  56. font-family: 'Lato', sans-serif;
  57. padding: 15px 20px;
  58. font-size: 16px;
  59. text-transform: uppercase;
  60. letter-spacing: 0.15em;
  61. font-weight: 300;
  62. }
  63. a.btn:hover {
  64. background-color: #eb7400;
  65. color: white;
  66. }
  67. a.btn-sm {
  68. padding: 6px 8px;
  69. font-size: 10px;
  70. line-height: normal;
  71. -webkit-border-radius: 4px;
  72. -moz-border-radius: 4px;
  73. border-radius: 4px;
  74. }
  75. .header input {
  76. border-radius: 3px;
  77. border: none;
  78. font-size: 18px;
  79. padding: 10px;
  80. width: 100%;
  81. }
  82. p {
  83. margin: 0 0 30px;
  84. color: #444;
  85. }
  86. .intro {
  87. font-family: 'Lato', sans-serif;
  88. font-weight: 300;
  89. margin: 0 0 40px;
  90. font-size: 22px;
  91. }
  92. .stand-first {
  93. color: rgba(255,255,255,0.8);
  94. margin: 0;
  95. }
  96. /* queries for type */
  97. @media (min-width: 768px) {
  98. h1 {
  99. font-size: 60px;
  100. }
  101. .stand-first {
  102. font-size: 26px;
  103. }
  104. .intro {
  105. font-size: 30px;
  106. margin: 0 0 60px;
  107. }
  108. p {
  109. margin: 0 0 30px;
  110. }
  111. }
  112. ul {
  113. margin: 0 0 30px;
  114. }
  115. @media (min-width: 768px) {
  116. ul {
  117. margin: 0 0 50px;
  118. }
  119. }
  120. figure {
  121. margin: 0 0 30px;
  122. position: relative;
  123. }
  124. @media (min-width: 768px) {
  125. figure {
  126. margin: 0 0 50px;
  127. }
  128. }
  129. figcaption {
  130. background-color: rgba(99,33,13,0.8);
  131. position: absolute;
  132. width: 75%;
  133. left: 0;
  134. bottom: 0;
  135. padding: 10px;
  136. color: white;
  137. font-family: 'Lato', sans-serif;
  138. font-size: 16px;
  139. font-weight: 300;
  140. }
  141. img {
  142. display: block;
  143. width: 100%;
  144. }
  145. .search {
  146. margin: 15px 0 0 0;
  147. display: none;
  148. position: relative;
  149. }
  150. @media (min-width: 768px) {
  151. .search {
  152. float: right;
  153. margin: 0 0 0 30px;
  154. display: inline-block;
  155. }
  156. }
  157. .search-icon {
  158. position: absolute;
  159. display: block;
  160. width: 20px;
  161. height: 20px;
  162. top: 10px;
  163. right: 10px;
  164. display: inline-block;
  165. }
  166. .search-icon svg {
  167. fill: #d4566b;
  168. width: 20px;
  169. height: 20px;
  170. }
  171. nav {
  172. margin: 15px 0 5px;
  173. display: none;
  174. }
  175. #main-navigation {
  176. padding-left: 0;
  177. }
  178. @media (min-width: 768px) {
  179. nav {
  180. margin: 15px 0 0 0;
  181. border-top: 1px solid rgba(255,255,255,0.1);
  182. display: block;
  183. }
  184. }
  185. .nav-pills>li+li {
  186. margin-left: 0;
  187. }
  188. .nav-pills>li>a {
  189. color: white;
  190. border-top: 1px solid transparent;
  191. border-radius: 0;
  192. text-transform: uppercase;
  193. letter-spacing: 0.15em;
  194. font-weight: 300;
  195. padding: 10px 10px;
  196. font-size: 11px;
  197. color: white;
  198. font-family: 'Lato', sans-serif;
  199. margin-top: -1px;
  200. }
  201. @media (min-width: 768px) {
  202. .nav-pills>li>a {
  203. padding: 10px 20px;
  204. font-size: 14px;
  205. }
  206. }
  207. .nav-pills>li>a, .nav-pills>li>a:focus, .nav-pills>li>a:hover,
  208. .nav-pills>li, .nav-pills>li, .nav>li>a, .nav>li>a {
  209. border-top: 1px solid transparent;
  210. }
  211. /* The following is to stop a pixel shift on hover */
  212. .nav-pills>li.breads {
  213. width: 90px;
  214. }
  215. .nav-pills>li.locations {
  216. width: 140px;
  217. }
  218. .nav-pills>li.blog {
  219. width: 86px;
  220. }
  221. .nav-pills>li.gallery {
  222. width: 115px;
  223. }
  224. .nav-pills>li.gallery {
  225. width: 115px;
  226. }
  227. .nav-pills>li.contactus {
  228. width: 148px;
  229. }
  230. .nav-pills>li.about {
  231. width: 98px;
  232. }
  233. .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover,
  234. .nav-pills>li.active, .nav-pills>li:hover, .nav>li>a:focus, .nav>li>a:hover {
  235. color: #d4566b;
  236. background-color: transparent;
  237. border-top: 1px solid #d4566b;
  238. font-weight: 400;
  239. }
  240. .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  241. background-color: transparent;
  242. border-top: 1px solid #d4566b;
  243. }
  244. .dropdown-menu {
  245. background-color: rgba(25,17,18,1);
  246. border-radius: 0;
  247. border: transparent;
  248. }
  249. .dropdown-menu > li> a {
  250. border-bottom: 1px solid #371c19;
  251. color: #fff;
  252. font-family: 'Lato', sans-serif;
  253. padding: 10px 20px;
  254. }
  255. .dropdown-menu > li> a:hover {
  256. background-color: transparent;
  257. color: #d4566b;
  258. }
  259. /* Everything but the jumbotron gets side spacing for mobile first views */
  260. .footer {
  261. font-size: 16px;
  262. font-family: 'Lato', sans-serif;
  263. padding: 20px 0;
  264. margin: 40px 0 0;
  265. font-weight: 300;
  266. background-color: white;
  267. }
  268. .footer p {
  269. margin: 0;
  270. }
  271. /* Custom page header */
  272. .header {
  273. padding: 15px 0 15px;
  274. /* position: absolute;*/
  275. width: 100%;
  276. background: rgb(25,17,18); /* Old browsers */
  277. background: -moz-linear-gradient(-45deg, rgba(25,17,18,1) 0%, rgba(55,28,25,1) 100%); /* FF3.6-15 */
  278. background: -webkit-linear-gradient(-45deg, rgba(25,17,18,1) 0%,rgba(55,28,25,1) 100%); /* Chrome10-25,Safari5.1-6 */
  279. background: linear-gradient(135deg, rgba(25,17,18,1) 0%,rgba(55,28,25,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  280. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191112', endColorstr='#371c19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  281. z-index: 10;
  282. }
  283. /* Make the masthead heading the same height as the navigation */
  284. .header h3 {
  285. margin-top: 0;
  286. margin-bottom: 0;
  287. line-height: 40px;
  288. }
  289. /* Custom page footer */
  290. .footer {
  291. padding-top: 19px;
  292. color: #777;
  293. }
  294. .container {
  295. width: auto;
  296. padding-left: 20px;
  297. padding-right: 20px;
  298. }
  299. /* Customize container */
  300. @media (min-width: 768px) {
  301. .container {
  302. max-width: 1400px;
  303. padding-left: 40px;
  304. padding-right: 40px;
  305. }
  306. }
  307. .container-narrow > hr {
  308. margin: 30px 0;
  309. }
  310. /* Main marketing message and sign up button */
  311. .jumbotron {
  312. text-align: center;
  313. border-bottom: 1px solid #e5e5e5;
  314. }
  315. .jumbotron .btn {
  316. padding: 14px 24px;
  317. font-size: 21px;
  318. }
  319. /* Supporting marketing content */
  320. .marketing {
  321. margin: 40px 0;
  322. }
  323. .marketing p + h4 {
  324. margin-top: 28px;
  325. }
  326. /* Article title and hero image */
  327. .hero {
  328. background-size: cover;
  329. background-position: center;
  330. padding: 200px 0 30px 0;
  331. position: relative;
  332. margin: 0 0 30px;
  333. }
  334. @media screen and (min-width: 768px) {
  335. .hero {
  336. padding: 400px 0 60px 0;
  337. margin: 0 0 40px;
  338. }
  339. }
  340. .hero-gradient-mask {
  341. position: absolute;
  342. width: 100%;
  343. height: 100%;
  344. bottom: 0;
  345. 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 */
  346. 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 */
  347. 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+ */
  348. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  349. }
  350. /* Logo */
  351. .logo, .logo:visited, .logo:focus {
  352. display: inline-block;
  353. padding: 0;
  354. color: white;
  355. font-size: 30px;
  356. font-weight: 300;
  357. margin: 0 0 0;
  358. }
  359. .logo:hover {
  360. color: #d4566b;
  361. text-decoration: none;
  362. }
  363. blockquote {
  364. border-left: 5px solid #d4566b;
  365. margin: 0 0 50px;
  366. }
  367. blockquote p {
  368. font-size: 30px;
  369. margin: 0 0 10px;
  370. }
  371. cite {
  372. font-family: 'Lato', sans-serif;
  373. text-transform: uppercase;
  374. color: #888;
  375. font-size: 12px;
  376. font-style: normal;
  377. letter-spacing: 0.15em;
  378. }
  379. /* Responsive: Portrait tablets and up */
  380. @media screen and (min-width: 768px) {
  381. /* Remove the padding we set earlier */
  382. .header,
  383. .marketing,
  384. .footer {
  385. padding-right: 0;
  386. padding-left: 0;
  387. }
  388. /* Remove the bottom border on the jumbotron for visual effect */
  389. .jumbotron {
  390. border-bottom: 0;
  391. }
  392. }
  393. /* Responsive: Portrait tablets and up */
  394. @media screen and (min-width: 1024px) {
  395. }
  396. /* Menu dropdown hack */
  397. li.has-submenu a.allow-toggle {
  398. float: left;
  399. padding-right: 0;
  400. }
  401. .caret-custom {
  402. float: right;
  403. display: inline-block!important;
  404. padding: 10px 10px 15px 5px!important;
  405. }
  406. .caret-custom:after {
  407. content: "▼"!important;
  408. }
  409. /* Edd styling */
  410. .site-title {
  411. border-bottom: 1px #eee solid;
  412. }
  413. .site-title h1 {
  414. font-family: 'Alegreya', serif;
  415. font-size: 1.5em;
  416. margin-top: 10px;
  417. }
  418. .navbar-form {
  419. border: 1px solid #ddd;
  420. padding: 0;
  421. border-radius: 5px;
  422. margin-right: 0px;
  423. }
  424. .navbar-form .form-group .form-control {
  425. border: none;
  426. box-shadow: none!important;
  427. font-family: 'Lato', sans-serif;
  428. }
  429. .navbar-right button.btn.btn-default {
  430. margin-left: -10px;
  431. border: none;
  432. border-left: 1px solid #ddd;
  433. border-radius: 0;
  434. }
  435. .navbar-default {
  436. background-color: transparent;
  437. border-color: transparent;
  438. }
  439. .navbar-nav a {
  440. font-size: 14px;
  441. }
  442. .navbar-nav a span {
  443. font-size: 10px;
  444. }
  445. .navbar.navbar-default.navbar-custom {
  446. border-bottom: 1px #eee solid;
  447. }
  448. .nav-pills> li:first-of-type > a {
  449. padding-left: 0;
  450. }
  451. .breadcrumb-container {
  452. background: linear-gradient(to right, rgba(21,38,44,0.8) 0%,rgba(0,0,0,0.9) 100%);
  453. margin-top: -1px;
  454. position: relative;
  455. z-index: 3;
  456. }
  457. .breadcrumb-container + content > .hero {
  458. margin-top: -36px;
  459. }
  460. .breadcrumb {
  461. background-color: transparent;
  462. color: #ccc;
  463. font-family: 'Lato', sans-serif;
  464. font-size: 14px;
  465. margin-bottom: 0px;
  466. padding-left: 0px;
  467. }
  468. .breadcrumb a, .breadcrumb .active {
  469. color: #ccc;
  470. }
  471. .breadcrumb .active {
  472. font-weight: bold;
  473. }
  474. .breadcrumb a:hover {
  475. color: #fff;
  476. text-decoration: none;
  477. }
  478. .breadcrumb>li+li:before {
  479. content: "\00BB";
  480. }
  481. /* Mobile nav */
  482. .navbar-toggle .icon-bar {
  483. background-color: #fff;
  484. }
  485. /* Pagination navigation */
  486. nav[role=pagination] {
  487. margin-top: 50px;
  488. text-align: center;
  489. }
  490. /* Location list page */
  491. .location-list-item {
  492. text-align: center;
  493. margin-bottom: 30px;
  494. }
  495. .location-list-title {
  496. line-height: 270px;
  497. height: 270px;
  498. background-color: #eb7400;
  499. }
  500. .location-list-title img {
  501. background-color: rgba(233,228,221,1);
  502. height: 270px;
  503. left: 0;
  504. position: absolute;
  505. top: 0;
  506. width: 100%;
  507. }
  508. .location-list-title:hover img {
  509. opacity: 0.3;
  510. }
  511. .location-list-title span.title {
  512. color: white;
  513. display: inline-block;
  514. font-weight: 300;
  515. position: relative;
  516. text-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
  517. }
  518. .location-list-title:hover span.title {
  519. text-shadow: none;
  520. }
  521. .location-list-item address {
  522. font-weight: 300;
  523. font-family: 'Lato', sans-serif;
  524. font-size: 1.4em;
  525. padding: 10px 40px;
  526. }
  527. /* Location detail page */
  528. .template-location-page .intro {
  529. margin-bottom: 0;
  530. }
  531. .location-opening h3 {
  532. margin-top: 0;
  533. }
  534. span.day {
  535. font-weight: bold;
  536. font-family: 'Lato', sans-serif;
  537. }
  538. time.location-time {
  539. display: block;
  540. }
  541. .map-container {
  542. height: 550px;
  543. }
  544. .location-address {
  545. background-color: rgba(233,228,221,1);
  546. padding: 10px 30px;
  547. margin-bottom: -200px;
  548. position: relative;
  549. z-index: 1;
  550. }
  551. /* Blog styles */
  552. .blog-meta {
  553. margin-top: -40px;
  554. margin-bottom: 20px;
  555. }
  556. .blog-avatar {
  557. border-radius: 100%;
  558. display: inline;
  559. width: unset;
  560. }
  561. .blog-avatars {
  562. margin-bottom: 20px;
  563. }
  564. .blog-avatars .author {
  565. display: inline-block;
  566. margin-right: 30px;
  567. }
  568. /* Blog list view */
  569. .blog-tags>li {
  570. border-right: 1px solid rgba(0,0,0,0.1);
  571. font-size: 0.9em;
  572. margin-left: -6px;
  573. padding: 4px 18px;
  574. text-transform: uppercase;
  575. }
  576. .blog-tags>li:first-child {
  577. margin-left: 0;
  578. border-left: 1px solid rgba(0,0,0,0.1);
  579. }
  580. .blog-tags>li:hover {
  581. background-color: rgba(0,0,0,0.1);
  582. }
  583. .blog-list li {
  584. list-style: none;
  585. }
  586. @media (min-width: 1025px) {
  587. .blog-list li:first-of-type, .blogpage-listing li:first-of-type,
  588. .blog-list li:nth-child(6), .blogpage-listing li:nth-child(6),
  589. .blog-list li:nth-child(7), .blogpage-listing li:nth-child(7),
  590. .blog-list li:nth-child(12), .blogpage-listing li:nth-child(12) {
  591. width: 50%;
  592. }
  593. }
  594. .blog-list-item {
  595. display: flex;
  596. flex-direction: column;
  597. margin-bottom: 20px;
  598. }
  599. .blog-list-item a {
  600. display: flex;
  601. flex-grow: 1;
  602. flex-direction: column;
  603. }
  604. .blog-list-item:hover img {
  605. opacity: 0.3;
  606. }
  607. .blog-list-item .image {
  608. overflow: hidden;
  609. background-color: #eb7400;
  610. flex: 1 0 auto;
  611. }
  612. .blog-list-item .image img {
  613. min-height: 510px;
  614. width: auto;
  615. min-width: 100%;
  616. }
  617. .blog-list-item .text {
  618. background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.6) 23%,rgba(0,0,0,1) 50%);
  619. margin-top: -150px;
  620. padding: 20px;
  621. position: relative;
  622. z-index: 1;
  623. }
  624. .blog-list-item .text h2 {
  625. color: #fff;
  626. font-weight: 200;
  627. margin-top: 0;
  628. }
  629. .blog-list-item .text p {
  630. color: #e3e3e3;
  631. font-size: 0.8em;
  632. margin-bottom: 0;
  633. }
  634. .blog-list-item .footer {
  635. background-color: #333;
  636. color: #fff;
  637. margin-top: 0;
  638. padding: 20px;
  639. position: relative;
  640. z-index: 1;
  641. }
  642. span.outline {
  643. border-radius: 3px;
  644. border: 1px solid rgba(0,0,0,0.1);
  645. font-size: 0.8em;
  646. padding: 3px 6px;
  647. text-transform: uppercase;
  648. }
  649. /* Bread styles */
  650. /* Bread listview */
  651. .bread-list-item {
  652. border: 1px solid rgba(0,0,0,0.1);
  653. border-radius: 3px;
  654. margin: 12px;
  655. overflow: hidden;
  656. }
  657. .bread-list-item h2 {
  658. font-weight: 300;
  659. }
  660. @media (min-width: 992px) {
  661. .bread-list-item {
  662. width: 47%;
  663. }
  664. }
  665. .bread-list-item .image {
  666. background-color: #eb7400;
  667. margin: 0;
  668. max-width: 180px;
  669. max-height: 180px;
  670. min-width: 180px;
  671. min-height: 180px;
  672. padding: 0;
  673. }
  674. .bread-list-item .image:hover img {
  675. opacity: 0.3;
  676. }
  677. .bread-list-item img {
  678. margin: 0;
  679. width: auto;
  680. }
  681. .bread-list-item ul {
  682. padding-left: 2px;
  683. }
  684. .bread-list-item li {
  685. list-style: none;
  686. }
  687. .bread-list-item li span {
  688. color: #777;
  689. display: inline-block;
  690. font-weight: 600;
  691. width: 70px;
  692. }
  693. /* Bread detail page */
  694. .bread-detail .introduction {
  695. color: #777;
  696. font-size: 1.4em;
  697. margin-top: 40px;
  698. }
  699. .bread-detail figure {
  700. margin: 35px auto 20px auto;
  701. overflow: hidden;
  702. }
  703. .bread-detail figure img {
  704. width: auto;
  705. }
  706. .bread-detail ul.bread-meta {
  707. list-style: none;
  708. padding-left: 0;
  709. }
  710. .bread-detail ul.bread-meta li ul {
  711. padding-left: 0;
  712. }
  713. .bread-detail ul.bread-meta li ul li {
  714. border-bottom: 1px solid #ccc;
  715. list-style: none;
  716. max-width: 450px;
  717. }
  718. /* Forms */
  719. /* Form detail page */
  720. .form-page input, textarea, select {
  721. display: block;
  722. min-width: 450px;
  723. max-width: 450px;
  724. }
  725. .form-page li input[type=checkbox], input[type=radio] {
  726. display: inline-block;
  727. margin-right: 10px;
  728. }
  729. .form-page .fieldWrapper ul,
  730. .form-page .fieldWrapper li {
  731. list-style: none;
  732. padding: 0;
  733. margin: 0;
  734. }
  735. .form-page .required {
  736. color: red;
  737. }
  738. .form-page .fieldWrapper {
  739. margin-bottom: 30px;
  740. }
  741. .form-page .help {
  742. color: #999;
  743. font-family: 'Lato', sans-serif;
  744. font-size: 0.8em;
  745. margin-top: 10px;
  746. max-width: 350px;
  747. }
  748. /* Form thank you page */
  749. .form-page-thanks h1 {
  750. margin-bottom: 30px;
  751. }
  752. /* Generic title image header include */
  753. .base-header img {
  754. height: auto;
  755. margin-top: 20px;
  756. max-width: 100%;
  757. width: auto;
  758. }
  759. @media (max-width: 970px) {
  760. .base-header img {
  761. width: 100%;
  762. }
  763. }
  764. /* Homepage */
  765. .homepage .hero {
  766. margin: 0;
  767. padding: 200px 0 30px 0;
  768. }
  769. .homepage .hero h1 {
  770. font-size: 2.2em;
  771. text-transform: uppercase;
  772. }
  773. .homepage .hero h1:after {
  774. background-color: rgba(255,255,255, 0.7);
  775. content: "";
  776. display: block;
  777. height: 5px;
  778. margin: 20px auto;
  779. width: 250px;
  780. }
  781. .homepage .home-hero {
  782. margin-bottom: 0;
  783. padding-bottom: 60px;
  784. text-align: center;
  785. }
  786. .homepage .home-hero .lead {
  787. color: #ddd;
  788. font-size: 1.6em;
  789. margin: 40px auto;
  790. }
  791. .homepage .home-hero .hero-cta-link {
  792. color: #fff;
  793. border: 1px solid #aaa;
  794. border-radius: 4px;
  795. padding: 10px 34px 10px 10px;
  796. display: inline-block;
  797. vertical-align: middle;
  798. transform: perspective(1px) translateZ(0);
  799. box-shadow: 0 0 1px transparent;
  800. position: relative;
  801. transition-duration: 0.1s;
  802. }
  803. .homepage .home-hero .hero-cta-link:before {
  804. content: "\f18e";
  805. font-family: FontAwesome;
  806. font-size: 1.2em;
  807. font-weight: 200;
  808. opacity: 0.8;
  809. padding: 0 1px;
  810. position: absolute;
  811. right: 0.2em;
  812. top: 0.2em;
  813. transform: translateZ(0);
  814. transition-duration: 0.1s;
  815. transition-property: transform;
  816. transition-timing-function: ease-out;
  817. }
  818. .homepage .home-hero .hero-cta-link:hover:before,
  819. .homepage .home-hero .hero-cta-link:focus:before,
  820. .homepage .home-hero .hero-cta-link:active:before {
  821. transform: translateX(4px);
  822. }
  823. .homepage .streamfield {
  824. background: linear-gradient(45deg, rgba(170,170,170,1) 0%,rgba(238,238,238,1) 44%);
  825. }
  826. .homepage .streamfield-column {
  827. padding: 60px;
  828. margin: 0 auto;
  829. float: none;
  830. }
  831. .homepage .streamfield-column h1,
  832. .homepage .streamfield-column h2,
  833. .homepage .streamfield-column h3,
  834. .homepage .streamfield-column h4,
  835. .homepage .streamfield-column h5 {
  836. text-align: center;
  837. }
  838. .homepage .promo-row {
  839. padding: 40px 0 40px 0;
  840. }
  841. .homepage .promo {
  842. background: linear-gradient(190deg, rgba(0,4,8,1) 0%,rgba(55,28,25,1) 100%);
  843. border-radius: 0px 0px 10px 10px;
  844. color: #fff;
  845. height: 100%;
  846. margin-bottom: 20px;
  847. margin-top: -40px;
  848. padding: 40px 60px;
  849. text-align: center;
  850. }
  851. .homepage .promo h1,
  852. .homepage .promo h2,
  853. .homepage .promo h3,
  854. .homepage .promo h4 {
  855. color: #eb7400;
  856. font-weight: 200;
  857. }
  858. .homepage .promo p,
  859. .homepage .promo li {
  860. color: #ccc;
  861. line-height: 1.6em;
  862. }
  863. .homepage .promo a {
  864. color: #fff;
  865. }
  866. @media (max-width: 970px) {
  867. .homepage .promo {
  868. padding: 30px 40px;
  869. }
  870. .homepage .promo figure img {
  871. max-width: 120px;
  872. height: auto;
  873. }
  874. .homepage .promo p {
  875. color: #fff;
  876. font-size: 1em;
  877. }
  878. }
  879. @media (max-width: 766px) {
  880. .homepage .promo {
  881. margin-left: 15px;
  882. margin-right: 15px;
  883. }
  884. }
  885. .homepage .promo figure img {
  886. border-radius: 100%;
  887. margin: auto;
  888. width: auto;
  889. }
  890. .homepage .feature-1 h2 {
  891. margin-top: 0;
  892. margin-bottom: 20px;
  893. }
  894. .homepage .feature-1 .featured-children li {
  895. border: 1px solid #ccc;
  896. border-radius: 3px;
  897. margin-bottom: 10px;
  898. }
  899. .homepage .feature-1 .featured-children li figure {
  900. width: 100%;
  901. overflow: hidden;
  902. margin: 0;
  903. }
  904. .homepage .feature-1 .featured-children li img {
  905. width: auto;
  906. }
  907. .homepage .feature-1 .featured-children li h3 {
  908. margin-top: 40px;
  909. font-weight: 300;
  910. font-size: 1.4em;
  911. }
  912. .homepage .feature-2 {
  913. padding: 40px 0 20px;
  914. }
  915. .homepage .feature-2 .feature-2-row {
  916. display: flex;
  917. flex-wrap: wrap;
  918. }
  919. .homepage .feature-2 h2,
  920. .homepage .feature-3 h2 {
  921. text-align: center;
  922. margin: 20px;
  923. }
  924. .homepage .feature-2 .feature-2-item {
  925. display: flex;
  926. flex-direction: column;
  927. margin: 0 auto 20px;
  928. }
  929. .homepage .feature-2 .feature-2-item figure {
  930. margin-bottom: 0;
  931. }
  932. .homepage .feature-2 .feature-2-item img {
  933. min-height: 210px;
  934. }
  935. .homepage .feature-2 .feature-2-item .feature-2-text {
  936. background-color: #dfdfdf;
  937. border-radius: 0 0 10px 10px;
  938. padding: 0 20px;
  939. flex: 1;
  940. }
  941. .homepage .feature-2 figure,
  942. .homepage .feature-3 figure {
  943. background-color: #eb7400;
  944. margin: 0;
  945. }
  946. @media (max-width: 766px) {
  947. .homepage .feature-2 .feature-2-row {
  948. display: inline-block;
  949. }
  950. }
  951. .homepage .feature-3 h3 {
  952. color: #fff;
  953. font-weight: 300;
  954. font-size: 1.8em;
  955. margin-bottom: 135px;
  956. margin-top: -145px;
  957. position: relative;
  958. text-align: center;
  959. text-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
  960. z-index: 1;
  961. }
  962. .homepage .feature-2 li:hover img,
  963. .homepage .feature-3 li:hover img {
  964. opacity: 0.3;
  965. }
  966. /* No gutters */
  967. .row.no-gutters {
  968. margin-right: 0;
  969. margin-left: 0;
  970. }
  971. .row.no-gutters > [class^="col-"],
  972. .row.no-gutters > [class*=" col-"] {
  973. padding-right: 0;
  974. padding-left: 0;
  975. }
  976. /* Bootstrap Equal height rows */
  977. .row-eq-height {
  978. display: -webkit-box;
  979. display: -webkit-flex;
  980. display: -ms-flexbox;
  981. display: flex;
  982. flex-wrap: wrap;
  983. }
  984. @media (min-width: 970px) {
  985. .hidden-md-up {
  986. display: none;
  987. }
  988. }
  989. @media (max-width: 970px) {
  990. .hidden-md-down {
  991. display: none;
  992. }
  993. }
  994. /* From Wagtail core */
  995. /* Responsive image/video classes */
  996. .rich-text img {
  997. max-width: 100%;
  998. height: auto;
  999. }
  1000. .richtext-image.left{
  1001. float:left;
  1002. }
  1003. .richtext-image.right{
  1004. float:right;
  1005. }
  1006. .responsive-object {
  1007. position: relative;
  1008. }
  1009. .responsive-object iframe,
  1010. .responsive-object object,
  1011. .responsive-object embed {
  1012. position: absolute;
  1013. top: 0;
  1014. left: 0;
  1015. width: 100%;
  1016. height: 100%;
  1017. }