2
0

main.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604
  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: 900;
  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. 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. @media (min-width: 768px) {
  176. nav {
  177. margin: 15px 0 0 0;
  178. border-top: 1px solid rgba(255,255,255,0.1);
  179. display: block;
  180. }
  181. }
  182. .nav-pills>li+li {
  183. margin-left: 0;
  184. }
  185. .nav-pills>li>a {
  186. color: white;
  187. border-top: 1px solid transparent;
  188. border-radius: 0;
  189. text-transform: uppercase;
  190. letter-spacing: 0.15em;
  191. font-weight: 300;
  192. padding: 10px 10px;
  193. font-size: 11px;
  194. color: white;
  195. font-family: 'Lato', sans-serif;
  196. margin-top: -1px;
  197. }
  198. @media (min-width: 768px) {
  199. .nav-pills>li>a {
  200. padding: 10px 20px;
  201. font-size: 14px;
  202. }
  203. }
  204. .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover,
  205. .nav-pills>li.active, .nav-pills>li:hover, .nav>li>a:focus, .nav>li>a:hover {
  206. color: #d4566b;
  207. background-color: transparent;
  208. border-top: 1px solid #d4566b;
  209. font-weight: 600;
  210. }
  211. .nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
  212. background-color: transparent;
  213. border-top: 1px solid #d4566b;
  214. }
  215. .dropdown-menu {
  216. background-color: rgba(25,17,18,1);
  217. border-radius: 0;
  218. border: transparent;
  219. }
  220. .dropdown-menu > li> a {
  221. border-bottom: 1px solid #371c19;
  222. color: #fff;
  223. font-family: 'Lato', sans-serif;
  224. padding: 10px 20px;
  225. }
  226. .dropdown-menu > li> a:hover {
  227. background-color: transparent;
  228. color: #d4566b;
  229. }
  230. /* Everything but the jumbotron gets side spacing for mobile first views */
  231. .footer {
  232. font-size: 16px;
  233. font-family: 'Lato', sans-serif;
  234. padding: 20px 0;
  235. margin: 40px 0 0;
  236. font-weight: 300;
  237. background-color: white;
  238. }
  239. .footer p {
  240. margin: 0;
  241. }
  242. /* Custom page header */
  243. .header {
  244. padding: 15px 0 15px;
  245. /* position: absolute;*/
  246. width: 100%;
  247. background: rgb(25,17,18); /* Old browsers */
  248. background: -moz-linear-gradient(-45deg, rgba(25,17,18,1) 0%, rgba(55,28,25,1) 100%); /* FF3.6-15 */
  249. background: -webkit-linear-gradient(-45deg, rgba(25,17,18,1) 0%,rgba(55,28,25,1) 100%); /* Chrome10-25,Safari5.1-6 */
  250. background: linear-gradient(135deg, rgba(25,17,18,1) 0%,rgba(55,28,25,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  251. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191112', endColorstr='#371c19',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  252. z-index: 10;
  253. }
  254. /* Make the masthead heading the same height as the navigation */
  255. .header h3 {
  256. margin-top: 0;
  257. margin-bottom: 0;
  258. line-height: 40px;
  259. }
  260. /* Custom page footer */
  261. .footer {
  262. padding-top: 19px;
  263. color: #777;
  264. }
  265. .container {
  266. width: auto;
  267. padding-left: 20px;
  268. padding-right: 20px;
  269. }
  270. /* Customize container */
  271. @media (min-width: 768px) {
  272. .container {
  273. max-width: 1400px;
  274. padding-left: 40px;
  275. padding-right: 40px;
  276. }
  277. }
  278. .container-narrow > hr {
  279. margin: 30px 0;
  280. }
  281. /* Main marketing message and sign up button */
  282. .jumbotron {
  283. text-align: center;
  284. border-bottom: 1px solid #e5e5e5;
  285. }
  286. .jumbotron .btn {
  287. padding: 14px 24px;
  288. font-size: 21px;
  289. }
  290. /* Supporting marketing content */
  291. .marketing {
  292. margin: 40px 0;
  293. }
  294. .marketing p + h4 {
  295. margin-top: 28px;
  296. }
  297. /* Article title and hero image */
  298. .hero {
  299. background-size: cover;
  300. background-position: center;
  301. padding: 200px 0 30px 0;
  302. position: relative;
  303. margin: 0 0 30px;
  304. }
  305. @media screen and (min-width: 768px) {
  306. .hero {
  307. padding: 400px 0 60px 0;
  308. margin: 0 0 40px;
  309. }
  310. }
  311. .hero-gradient-mask {
  312. position: absolute;
  313. width: 100%;
  314. height: 100%;
  315. bottom: 0;
  316. 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 */
  317. 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 */
  318. 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+ */
  319. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  320. }
  321. /* Logo */
  322. .logo, .logo:visited, .logo:focus {
  323. display: inline-block;
  324. padding: 0;
  325. color: white;
  326. font-size: 30px;
  327. font-weight: 300;
  328. margin: 0 0 0;
  329. }
  330. .logo:hover {
  331. color: #d4566b;
  332. text-decoration: none;
  333. }
  334. blockquote {
  335. border-left: 5px solid #d4566b;
  336. margin: 0 0 50px;
  337. }
  338. blockquote p {
  339. font-size: 30px;
  340. margin: 0 0 10px;
  341. }
  342. cite {
  343. font-family: 'Lato', sans-serif;
  344. text-transform: uppercase;
  345. color: #888;
  346. font-size: 12px;
  347. font-style: normal;
  348. letter-spacing: 0.15em;
  349. }
  350. /* Responsive: Portrait tablets and up */
  351. @media screen and (min-width: 768px) {
  352. /* Remove the padding we set earlier */
  353. .header,
  354. .marketing,
  355. .footer {
  356. padding-right: 0;
  357. padding-left: 0;
  358. }
  359. /* Remove the bottom border on the jumbotron for visual effect */
  360. .jumbotron {
  361. border-bottom: 0;
  362. }
  363. }
  364. /* Responsive: Portrait tablets and up */
  365. @media screen and (min-width: 1024px) {
  366. }
  367. /* Menu dropdown hack */
  368. li.has-submenu a.allow-toggle {
  369. float: left;
  370. padding-right: 0;
  371. }
  372. .caret-custom {
  373. float: right;
  374. display: inline-block!important;
  375. padding: 10px 10px 15px 5px!important;
  376. }
  377. .caret-custom:after {
  378. content: "▼"!important;
  379. }
  380. /* Edd styling */
  381. .site-title {
  382. border-bottom: 1px #eee solid;
  383. }
  384. .site-title h1 {
  385. font-family: 'Alegreya', serif;
  386. font-size: 1.5em;
  387. margin-top: 10px;
  388. }
  389. .navbar-form {
  390. border: 1px solid #ddd;
  391. padding: 0;
  392. border-radius: 5px;
  393. margin-right: 0px;
  394. }
  395. .navbar-form .form-group .form-control {
  396. border: none;
  397. box-shadow: none!important;
  398. font-family: 'Lato', sans-serif;
  399. }
  400. .navbar-right button.btn.btn-default {
  401. margin-left: -10px;
  402. border: none;
  403. border-left: 1px solid #ddd;
  404. border-radius: 0;
  405. }
  406. .navbar-default {
  407. background-color: transparent;
  408. border-color: transparent;
  409. }
  410. .navbar-nav a {
  411. font-size: 14px;
  412. }
  413. .navbar-nav a span {
  414. font-size: 10px;
  415. }
  416. .navbar.navbar-default.navbar-custom {
  417. border-bottom: 1px #eee solid;
  418. }
  419. .nav-pills> li:first-of-type > a {
  420. padding-left: 0;
  421. }
  422. .breadcrumb-container {
  423. /*background-color: rgba(21, 38, 44, 0.8);*/
  424. background: linear-gradient(to right, rgba(21,38,44,0.8) 0%,rgba(0,0,0,0.9) 100%);
  425. position: relative;
  426. z-index: 3;
  427. }
  428. .breadcrumb-container + content > .hero {
  429. margin-top: -36px;
  430. }
  431. .breadcrumb {
  432. background-color: transparent;
  433. color: #ccc;
  434. font-family: 'Lato', sans-serif;
  435. font-size: 14px;
  436. margin-bottom: 0px;
  437. padding-left: 0px;
  438. }
  439. .breadcrumb a, .breadcrumb .active {
  440. color: #ccc;
  441. }
  442. .breadcrumb .active {
  443. font-weight: bold;
  444. }
  445. .breadcrumb a:hover {
  446. color: #fff;
  447. text-decoration: none;
  448. }
  449. .breadcrumb>li+li:before {
  450. content: "\00BB";
  451. }
  452. /* Mobile nav */
  453. .navbar-toggle .icon-bar {
  454. background-color: #fff;
  455. }
  456. /* Location list page */
  457. .location-list-item {
  458. text-align: center;
  459. margin-bottom: 30px;
  460. }
  461. .location-list-title {
  462. line-height: 270px;
  463. height: 270px;
  464. background-color: #eb7400;
  465. }
  466. .location-list-title img {
  467. background-color: rgba(233,228,221,1);
  468. height: 270px;
  469. left: 0;
  470. position: absolute;
  471. top: 0;
  472. width: 100%;
  473. }
  474. .location-list-title:hover img {
  475. opacity: 0.3;
  476. }
  477. .location-list-title span.title {
  478. color: white;
  479. display: inline-block;
  480. font-weight: 300;
  481. position: relative;
  482. text-shadow: 0px 0px 30px rgba(0, 0, 0, 1);
  483. }
  484. .location-list-title:hover span.title {
  485. text-shadow: none;
  486. }
  487. .location-list-item address {
  488. font-weight: 300;
  489. font-family: 'Lato', sans-serif;
  490. font-size: 1.4em;
  491. padding: 10px 40px;
  492. }
  493. /* Location detail page */
  494. .template-location-page .intro {
  495. margin-bottom: 0;
  496. }
  497. .location-opening h3 {
  498. margin-top: 0;
  499. }
  500. span.day {
  501. font-weight: bold;
  502. font-family: 'Lato', sans-serif;
  503. }
  504. time.location-time {
  505. display: block;
  506. }
  507. .map-container {
  508. height: 550px;
  509. }
  510. .location-address {
  511. background-color: rgba(233,228,221,1);
  512. padding: 10px 30px;
  513. margin-bottom: -200px;
  514. position: relative;
  515. z-index: 1;
  516. }
  517. /* No gutters */
  518. .row.no-gutters {
  519. margin-right: 0;
  520. margin-left: 0;
  521. }
  522. .row.no-gutters > [class^="col-"],
  523. .row.no-gutters > [class*=" col-"] {
  524. padding-right: 0;
  525. padding-left: 0;
  526. }