2
0

main.css 21 KB

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