style.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905
  1. /*
  2. Theme Name: HPCP
  3. Theme URI: https://hospicepiedmont.org/
  4. Author: @windhamdavid
  5. Author URI: https://davidwindham.com
  6. Description: something else
  7. Version: 1.0.0
  8. License: GNU General Public License v3
  9. Text Domain: hp
  10. Requires at least: 4.7
  11. Requires PHP: 7.2
  12. Tested up to: 5.6.1
  13. Tags:
  14. */
  15. /* ######## credits: ########
  16. https://github.com/twbs/bootstrap
  17. https://github.com/wp-bootstrap/wp-bootstrap-navwalker
  18. https://github.com/Automattic/_s
  19. */
  20. /*--------------------------------------------------------------
  21. ########################## Typography ##########################
  22. --------------------------------------------------------------*/
  23. @import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');
  24. h1, h2, h3, h4, h5, h6 {
  25. clear: both;
  26. color: #24292e;
  27. font-weight: 600;
  28. margin-top: 24px;
  29. margin-bottom: 15px;
  30. font-family: 'Lato', sans-serif;
  31. }
  32. h1 {
  33. font-size: 31px;
  34. padding-bottom: 10px;
  35. }
  36. h2 {
  37. font-size: 21px;
  38. padding-bottom: 0.3em;
  39. line-height: 1.25;
  40. }
  41. h3 {
  42. font-size: 18px;
  43. line-height: 25px;
  44. }
  45. h4 {
  46. font-size: 16px;
  47. line-height: 20px;
  48. }
  49. h5 {
  50. font-size: 14px;
  51. line-height: 17.5px;
  52. }
  53. p {
  54. margin-bottom: 1.5em;
  55. }
  56. h1.entry-title {
  57. margin-top:20px;
  58. font-size: 31px;
  59. color:#343C70;
  60. font-weight:700;
  61. font-family: 'Lato', sans-serif;
  62. border-bottom: 1px solid #eaecef;
  63. }
  64. h2.entry-title {
  65. font-size: 21px;
  66. color:#343C70;
  67. font-family: 'Lato', sans-serif;
  68. border-bottom: 1px solid #eaecef;
  69. }
  70. .home h2.lato {
  71. font-family: 'Lato', Helvetica, Arial, sans-serif;
  72. margin-bottom:0px;
  73. font-weight:400;
  74. }
  75. .home h3.lato {
  76. font-family: 'Lato', Helvetica, Arial, sans-serif;
  77. font-weight:300;
  78. }
  79. ul.page-history {
  80. list-style:none;
  81. padding: 0 0 0 5px;
  82. }
  83. .lato {
  84. font-family: 'Lato', Helvetica, Arial, sans-serif;
  85. }
  86. .has-purple-color {
  87. color:#343C70;
  88. }
  89. /*--------------------------------------------------------------
  90. ########################## Elements ##########################
  91. --------------------------------------------------------------*/
  92. img {
  93. height: auto;
  94. /* Make sure images are scaled correctly. */
  95. max-width: 100%;
  96. /* Adhere to container width. */
  97. }
  98. figure {
  99. margin: 1em 0;
  100. /* Extra wide images within figure tags don't overflow the content area. */
  101. }
  102. table {
  103. margin: 0 0 1.5em;
  104. width: 100%;
  105. }
  106. /*--------------------------------------------------------------
  107. ########################## Navigation ##########################
  108. --------------------------------------------------------------*/
  109. #top {
  110. background-color:#343C70;
  111. }
  112. .top-navbar {
  113. }
  114. @media only screen and (max-width: 768px) {
  115. .top-navbar {
  116. font-size:12px;
  117. }
  118. }
  119. @media (min-width: 768px) and (max-width: 992px) {
  120. .top-navbar {
  121. font-size:15px;
  122. }
  123. }
  124. #masthead {
  125. padding: 5px 0;
  126. background-color:#325363;
  127. border-top: 3px solid #343C70;
  128. }
  129. .masthead {
  130. opacity: 1;
  131. transition: opacity 0.7s ease;
  132. }
  133. .masthead-hide {
  134. pointer-events: none;
  135. opacity: 0;
  136. }
  137. .navbar-brand > a {
  138. font-family: 'Lato', sans-serif;
  139. color: rgba(0, 0, 0, 0.9);
  140. font-size: 23px;
  141. outline: medium none;
  142. text-decoration: none;
  143. color: #d7d7d7;
  144. }
  145. .navbar-brand img {
  146. width:40px;
  147. }
  148. .navbar-brand > a:hover {
  149. text-decoration: none;
  150. color:#7ac9f0;
  151. }
  152. .logo-firstline {
  153. font-variant:small-caps;
  154. font-weight: 300;
  155. }
  156. .logo-img img {
  157. margin:-12px 0 0 -3px;
  158. }
  159. .logo-secondline {
  160. font-variant:small-caps;
  161. font-weight: 300;
  162. margin: 0 0 0 -5px;
  163. }
  164. .logo-byline {
  165. display:block;
  166. font-weight: 200;
  167. margin:-5px 0 0;
  168. padding-left:163px;
  169. letter-spacing: .08rem;
  170. font-size:14px;
  171. }
  172. @media (min-width: 768px) and (max-width: 992px) {
  173. .navbar-brand > a {
  174. font-size: 19px;
  175. }
  176. .navbar-brand img {
  177. width: 30px;
  178. }
  179. .navbar-toggler {
  180. padding:4px;
  181. font-size:12px;
  182. }
  183. .logo-byline {
  184. display:block;
  185. margin:-5px 0 0;
  186. padding-left:122px;
  187. font-size:12px;
  188. }
  189. }
  190. @media (max-width: 767px) {
  191. .navbar-brand > a {
  192. font-size: 15px;
  193. }
  194. .navbar-brand img {
  195. width: 25px;
  196. }
  197. .navbar-toggler {
  198. padding:4px;
  199. font-size:12px;
  200. }
  201. .logo-byline {
  202. display:block;
  203. margin:-8px 0 0;
  204. padding-left:95px;
  205. font-size:10px;
  206. }
  207. }
  208. .dropdown-item.active, .dropdown-item:active {
  209. color:#777;
  210. }
  211. .hp-sidenav.sticky-lg-top {
  212. top:100px;
  213. }
  214. @media only screen and (max-width: 768px) {
  215. .hp-sidenav.sticky-lg-top {
  216. top:10px;
  217. }
  218. }
  219. .hp-sidenav li.list-group-item {
  220. background-color:transparent;
  221. }
  222. .hp-sidenav li.current_nav-item a {
  223. color:#343C70;
  224. font-weight:700;
  225. }
  226. #page-sub-header {
  227. position: relative;
  228. padding-top: 5rem;
  229. padding-bottom: 0;
  230. text-align: center;
  231. font-size: 1.25rem;
  232. background-size: cover !important;
  233. }
  234. body #page-sub-header h1 {
  235. line-height: 1.6;
  236. font-size: 4rem;
  237. color: #563e7c;
  238. margin: 0 0 1rem;
  239. border: 0;
  240. padding: 0;
  241. }
  242. #page-sub-header p {
  243. margin-bottom: 0;
  244. line-height: 1.4;
  245. font-size: 1.25rem;
  246. font-weight: 300;
  247. }
  248. body #page-sub-header p {
  249. color: #212529;
  250. }
  251. a.page-scroller {
  252. color: #333;
  253. font-size: 2.6rem;
  254. display: inline-block;
  255. margin-top: 2rem;
  256. }
  257. @media screen and (min-width: 768px) {
  258. body #page-sub-header h1 {
  259. font-size: 3.750rem;
  260. }
  261. body #page-sub-header {
  262. font-size: 1.25rem;
  263. }
  264. }
  265. @media screen and (min-width: 992px) {
  266. #page-sub-header p {
  267. max-width: 43rem;
  268. margin: 0 auto;
  269. }
  270. }
  271. /*--------------------------------------------------------------
  272. ########################## Links ##########################
  273. --------------------------------------------------------------*/
  274. a {
  275. color:#343C70;
  276. text-decoration:none;
  277. }
  278. a:hover {
  279. color:#38537A;
  280. }
  281. a.dropdown-toggle, a.nav-link {
  282. }
  283. a.page-numbers {
  284. display: inline-block;
  285. color:#777;
  286. padding:5px 10px;
  287. border: 1px solid #999;
  288. border-radius: 5px;
  289. text-decoration: none;
  290. }
  291. span.current {
  292. display: inline-block;
  293. color:#444;
  294. padding:5px 10px;
  295. border: 1px solid #ddd;
  296. border-radius: 5px;
  297. background: #eee;
  298. }
  299. a.page-numbers:hover {
  300. background: #eee;
  301. }
  302. .post-navigation .nav-previous a, .post-navigation .nav-next a {
  303. color:#777;
  304. border: 1px solid #ddd;
  305. border-radius: 5px;
  306. display: inline-block;
  307. padding:5px 10px;
  308. text-decoration: none;
  309. }
  310. .entry-meta {
  311. color:#777;
  312. }
  313. /*--------------------------------------------------------------
  314. ########################## Menus ##########################
  315. --------------------------------------------------------------*/
  316. #masthead nav {
  317. padding-left: 0;
  318. padding-right: 0;
  319. }
  320. #masthead .navbar-nav > li > a:hover,
  321. #masthead .navbar-nav > li.current_page_item > a {
  322. color: #fff;
  323. }
  324. #masthead .navbar-nav > li.current-page-ancestor > a {
  325. color: #fff;
  326. }
  327. #masthead .navbar-nav > li.menu-item > a.btn-outline-light {
  328. color: #fff;
  329. }
  330. #masthead .navbar-nav > li.menu-item > a.btn-outline-light:hover {
  331. color: #343c70;
  332. background-color:#7ac9f0;
  333. }
  334. .navbar-brand {
  335. height: auto;
  336. }
  337. .yamm .collapse,
  338. .yamm .dropup,
  339. .yamm .dropdown {
  340. position: static;
  341. }
  342. .yamm .container {
  343. position: relative;
  344. }
  345. .yamm .dropdown-menu {
  346. left: auto;
  347. }
  348. .yamm .yamm-content {
  349. padding: 1rem;
  350. }
  351. .yamm .dropdown.yamm-fw .dropdown-menu,
  352. .yamm .dropup.yamm-fw .dropdown-menu {
  353. left: 0;
  354. right: 0;
  355. }
  356. .navbar-toggle .icon-bar {
  357. background: #000 none repeat scroll 0 0;
  358. }
  359. .dropdown-menu .dropdown-toggle::after {
  360. border-bottom: 0.3em solid transparent;
  361. border-left: 0.3em solid;
  362. border-top: 0.3em solid transparent;
  363. }
  364. .dropdown.menu-item-has-children .dropdown.menu-item-has-children {
  365. position: relative;
  366. }
  367. .dropdown.menu-item-has-children .dropdown.menu-item-has-children>.dropdown-menu {
  368. top: 0;
  369. left: 100%;
  370. margin-top: -6px;
  371. margin-left: -1px;
  372. -webkit-border-radius: 0 6px 6px 6px;
  373. -moz-border-radius: 0 6px 6px;
  374. border-radius: 0 6px 6px 6px;
  375. }
  376. .dropdown.menu-item-has-children .dropdown.menu-item-has-children:hover>.dropdown-menu {
  377. display: block;
  378. }
  379. .dropdown.menu-item-has-children .dropdown.menu-item-has-children>a:after {
  380. display: block;
  381. content: " ";
  382. float: right;
  383. width: 0;
  384. height: 0;
  385. border-color: transparent;
  386. border-style: solid;
  387. border-width: 5px 0 5px 5px;
  388. border-left-color: #ccc;
  389. margin-top: 5px;
  390. margin-right: -10px;
  391. }
  392. .dropdown.menu-item-has-children .dropdown.menu-item-has-children:hover>a:after {
  393. border-left-color: #fff;
  394. }
  395. .dropdown.menu-item-has-children .dropdown.menu-item-has-children.pull-left {
  396. float: none;
  397. }
  398. .dropdown.menu-item-has-children .dropdown.menu-item-has-children.pull-left>.dropdown-menu {
  399. left: -100%;
  400. margin-left: 10px;
  401. -webkit-border-radius: 6px 0 6px 6px;
  402. -moz-border-radius: 6px 0 6px 6px;
  403. border-radius: 6px 0 6px 6px;
  404. }
  405. .menu-toggle,
  406. .main-navigation.toggled ul {
  407. display: block;
  408. }
  409. .dropdown-item {
  410. line-height: 1.2;
  411. padding-bottom: 0.313rem;
  412. padding-top: 0.313rem;
  413. }
  414. .dropdown-menu {
  415. min-width: 12.500rem;
  416. }
  417. .dropdown .open .dropdown-menu {
  418. display: block;
  419. left: 12.250em;
  420. top: 0;
  421. }
  422. .dropdown-menu .dropdown-item {
  423. white-space: normal;
  424. background: transparent;
  425. line-height: 1.6;
  426. }
  427. .dropdown-menu .dropdown-item:hover {
  428. background: transparent;
  429. }
  430. @media screen and (min-width: 37.5em) {
  431. .menu-toggle {
  432. display: none;
  433. }
  434. }
  435. @media screen and (min-width: 769px) {
  436. .dropdown-menu li > .dropdown-menu {
  437. right: -9.875rem;
  438. top: 1.375rem;
  439. }
  440. }
  441. @media screen and (max-width: 991px) {
  442. .navbar-nav .dropdown-menu {
  443. border: medium none;
  444. margin-left: 1.250rem;
  445. padding: 0;
  446. }
  447. .dropdown-menu li a {
  448. padding: 0;
  449. }
  450. .navbar-light .navbar-toggler {
  451. border: medium none;
  452. outline: none;
  453. }
  454. }
  455. .site-main .comment-navigation,
  456. .site-main .posts-navigation,
  457. .site-main .post-navigation {
  458. margin: 0 0 1.5em;
  459. overflow: hidden;
  460. }
  461. .comment-navigation .nav-previous,
  462. .posts-navigation .nav-previous,
  463. .post-navigation .nav-previous {
  464. float: left;
  465. width: 50%;
  466. }
  467. .comment-navigation .nav-next,
  468. .posts-navigation .nav-next,
  469. .post-navigation .nav-next {
  470. float: right;
  471. text-align: right;
  472. width: 50%;
  473. }
  474. .comment-content.card-block {
  475. padding: 20px;
  476. }
  477. .navigation.post-navigation {
  478. padding-top: 1.875rem;
  479. }
  480. .post-navigation .nav-next a::after {
  481. content: " \2192";
  482. }
  483. .post-navigation .nav-previous a::before {
  484. content: "\2190 ";
  485. }
  486. .post-navigation .nav-previous a:hover,
  487. .post-navigation .nav-next a:hover {
  488. background: #eee none repeat scroll 0 0;
  489. }
  490. /*--------------------------------------------------------------
  491. ########################## Accessibility ##########################
  492. --------------------------------------------------------------*/
  493. /* Text meant only for screen readers. */
  494. .screen-reader-text {
  495. clip: rect(1px, 1px, 1px, 1px);
  496. position: absolute !important;
  497. height: 1px;
  498. width: 1px;
  499. overflow: hidden;
  500. word-wrap: normal !important;
  501. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  502. }
  503. .screen-reader-text:focus {
  504. background-color: #f1f1f1;
  505. border-radius: 3px;
  506. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  507. clip: auto !important;
  508. color: #21759b;
  509. display: block;
  510. font-size: 14px;
  511. font-size: 0.875rem;
  512. font-weight: bold;
  513. height: auto;
  514. left: 0.313rem;
  515. line-height: normal;
  516. padding: 0.938rem 1.438rem 0.875rem;
  517. text-decoration: none;
  518. top: 0.313rem;
  519. width: auto;
  520. z-index: 100000;
  521. /* Above WP toolbar. */
  522. }
  523. /* Do not show the outline on the skip link target. */
  524. #content[tabindex="-1"]:focus {
  525. outline: 0;
  526. }
  527. /*--------------------------------------------------------------
  528. ########################## Alignments ##########################
  529. --------------------------------------------------------------*/
  530. .alignleft {
  531. display: inline;
  532. float: left;
  533. margin-right: 1.5em;
  534. }
  535. .alignright {
  536. display: inline;
  537. float: right;
  538. margin-left: 1.5em;
  539. }
  540. .aligncenter {
  541. clear: both;
  542. display: block;
  543. margin-left: auto;
  544. margin-right: auto;
  545. }
  546. a img.alignright {
  547. float: right;
  548. margin: 0.313rem 0 1.25rem 1.25rem;
  549. }
  550. a img.alignnone {
  551. margin: 0.313rem 1.25rem 1.25rem 0;
  552. }
  553. a img.alignleft {
  554. float: left;
  555. margin: 0.313rem 1.25rem 1.25rem 0;
  556. }
  557. a img.aligncenter {
  558. display: block;
  559. margin-left: auto;
  560. margin-right: auto;
  561. }
  562. .wp-caption.alignnone {
  563. margin: 0.313rem 1.25rem 1.25rem 0;
  564. }
  565. .wp-caption.alignleft {
  566. margin: 0.313rem 1.25rem 1.25rem 0;
  567. }
  568. .wp-caption.alignright {
  569. margin: 0.313rem 0 1.25rem 1.25rem;
  570. }
  571. /*--------------------------------------------------------------
  572. ########################## Clear ##########################
  573. --------------------------------------------------------------*/
  574. .clear:before,
  575. .clear:after,
  576. .entry-content:before,
  577. .entry-content:after,
  578. .comment-content:before,
  579. .comment-content:after,
  580. .site-header:before,
  581. .site-header:after,
  582. .site-content:before,
  583. .site-content:after,
  584. .site-footer:before,
  585. .site-footer:after {
  586. content: "";
  587. display: table;
  588. table-layout: fixed;
  589. }
  590. .clear:after,
  591. .entry-content:after,
  592. .comment-content:after,
  593. .site-header:after,
  594. .site-content:after,
  595. .site-footer:after {
  596. clear: both;
  597. }
  598. /*--------------------------------------------------------------
  599. ########################## Content ##########################
  600. --------------------------------------------------------------*/
  601. #content.site-content {
  602. padding-bottom: 50px;
  603. padding-top: 50px;
  604. }
  605. @media only screen and (max-width: 768px) {
  606. #content.site-content {
  607. padding-bottom: 15px;
  608. padding-top: 15px;
  609. }
  610. }
  611. .single .byline,
  612. .group-blog .byline {
  613. display: inline;
  614. }
  615. .page-content,
  616. .entry-content,
  617. .entry-summary {
  618. margin: 1.5em 0 0;
  619. }
  620. .page-links {
  621. clear: both;
  622. margin: 0 0 1.5em;
  623. }
  624. .page-template-blank-page .entry-content,
  625. .blank-page-with-container .entry-content {
  626. margin-top: 0;
  627. }
  628. .post.hentry {
  629. margin-bottom: 4rem;
  630. }
  631. .posted-on, .byline, .comments-link {
  632. color: #9a9a9a;
  633. }
  634. .entry-title > a {
  635. color: inherit;
  636. }
  637. /*--------------------------------------------------------------
  638. ########################## Comments ##########################
  639. --------------------------------------------------------------*/
  640. .comment-content a {
  641. word-wrap: break-word;
  642. }
  643. .bypostauthor {
  644. display: block;
  645. }
  646. .comment-body .pull-left {
  647. padding-right: 0.625rem;
  648. }
  649. .comment-list .comment {
  650. display: block;
  651. }
  652. .comment-list {
  653. padding-left: 0;
  654. }
  655. .comments-title {
  656. font-size: 1.125rem;
  657. }
  658. .comment-list .pingback {
  659. border-top: 1px solid rgba(0, 0, 0, 0.125);
  660. padding: 0.563rem 0;
  661. }
  662. .comment-list .pingback:first-child {
  663. border: medium none;
  664. }
  665. /*--------------------------------------------------------------
  666. ########################## Media ##########################
  667. --------------------------------------------------------------*/
  668. .page-content .wp-smiley,
  669. .entry-content .wp-smiley,
  670. .comment-content .wp-smiley {
  671. border: none;
  672. margin-bottom: 0;
  673. margin-top: 0;
  674. padding: 0;
  675. }
  676. embed,
  677. iframe,
  678. object {
  679. max-width: 100%;
  680. }
  681. /*--------------------------------------------------------------
  682. ########################## Captions ##########################
  683. --------------------------------------------------------------*/
  684. .wp-caption {
  685. background: #f1f1f1 none repeat scroll 0 0;
  686. border: 1px solid #f0f0f0;
  687. max-width: 96%;
  688. padding: 0.313rem 0.313rem 0;
  689. text-align: center;
  690. }
  691. .wp-caption img[class*="wp-image-"] {
  692. border: 0 none;
  693. height: auto;
  694. margin: 0;
  695. max-width: 100%;
  696. padding: 0;
  697. width: auto;
  698. }
  699. .wp-caption .wp-caption-text {
  700. font-size: 0.688rem;
  701. line-height: 1.063rem;
  702. margin: 0;
  703. padding: 0.625rem;
  704. }
  705. .wp-caption-text {
  706. text-align: center;
  707. }
  708. /*--------------------------------------------------------------
  709. ########################## Galleries ##########################
  710. --------------------------------------------------------------*/
  711. .gallery {
  712. margin-bottom: 1.5em;
  713. }
  714. .gallery-item {
  715. display: inline-block;
  716. text-align: center;
  717. vertical-align: top;
  718. width: 100%;
  719. }
  720. .gallery-item .gallery-columns-2 {
  721. max-width: 50%;
  722. }
  723. .gallery-item .gallery-columns-3 {
  724. max-width: 33.33333%;
  725. }
  726. .gallery-item .gallery-columns-4 {
  727. max-width: 25%;
  728. }
  729. .gallery-item .gallery-columns-5 {
  730. max-width: 20%;
  731. }
  732. .gallery-item .gallery-columns-6 {
  733. max-width: 16.66667%;
  734. }
  735. .gallery-item .gallery-columns-7 {
  736. max-width: 14.28571%;
  737. }
  738. .gallery-item .gallery-columns-8 {
  739. max-width: 12.5%;
  740. }
  741. .gallery-item .gallery-columns-9 {
  742. max-width: 11.11111%;
  743. }
  744. .gallery-caption {
  745. display: block;
  746. }
  747. /*--------------------------------------------------------------
  748. ########################## Widgets ##########################
  749. --------------------------------------------------------------*/
  750. .widget {
  751. margin: 0 0 1.5em;
  752. font-size: 0.875rem;
  753. }
  754. .widget select {
  755. max-width: 100%;
  756. }
  757. .widget_search .search-form input[type="submit"] {
  758. display: none;
  759. }
  760. .widget .nav > li > a:focus,
  761. .widget .nav > li > a:hover {
  762. text-decoration: none;
  763. color:#325363;
  764. }
  765. .textwidget ul {
  766. padding:0 0 0 5px;
  767. }
  768. .widget li {
  769. list-style:none;
  770. padding:0 0 0 5px;
  771. }
  772. .widget .nav-link {
  773. padding:0 0 0 10px;
  774. }
  775. .widget ul.blogroll {
  776. list-style: none;
  777. padding:0 0 0 10px;
  778. }
  779. h3.widget-title {
  780. font-family: 'Lato', sans-serif;
  781. font-weight:400;
  782. font-size: 18px;
  783. color:#343C70;
  784. }
  785. .footer h3.widget-title {
  786. font-family: 'Lato', sans-serif;
  787. font-weight:300;
  788. font-size: 18px;
  789. color:#dedede;
  790. }
  791. h1.lato-widget {
  792. font-family: 'Lato', sans-serif;
  793. font-weight:300;
  794. margin-top:0px;
  795. font-size: 27px;
  796. color:#d7d7d7;
  797. }
  798. h3.lato-widget {
  799. font-family: 'Lato', sans-serif;
  800. font-weight:300;
  801. margin-top:0px;
  802. color:#d7d7d7;
  803. }
  804. h3.widget-title {
  805. margin-bottom: 12px;
  806. border-bottom: .25px solid rgba(255, 255, 255, .25);
  807. }
  808. .half-rule {
  809. width: 6rem;
  810. margin: 2.5rem 0;
  811. }
  812. .widget_categories .nav-link {
  813. display: inline-block;
  814. }
  815. .mc4wp-form-basic label {
  816. font-weight:300;
  817. }
  818. .mc4wp-form-basic input {
  819. background: rgba(0, 0, 0, 0.2);
  820. color:#fff;
  821. }
  822. .footer .mc {
  823. font-weight:300;
  824. }
  825. .footer form.mc input.form-control {
  826. background-color: rgba(255, 255, 255, 0.05);
  827. }
  828. .footer form.mc ::placeholder {
  829. color:#dedede;
  830. font-weight:300;
  831. }
  832. .footer form.mc input.form-control {
  833. color:#dedede;
  834. }
  835. .footer form.search-form input.search-field {
  836. background-color: rgba(255, 255, 255, 0.05);
  837. }
  838. .footer form.search-form ::placeholder {
  839. font-weight:300;
  840. color:#dedede;
  841. }
  842. .footer form.search-form input.form-control {
  843. color:#dedede;
  844. }
  845. .footer .btn-outline-light {
  846. font-weight:300;
  847. }
  848. .footer .btn-outline-light:hover {
  849. color:#343C70;
  850. background-color: rgba(222, 222, 222, 0.6);
  851. }
  852. /*--------------------------------------------------------------
  853. ########################## Footer ##########################
  854. --------------------------------------------------------------*/
  855. .footer {
  856. background-color:#325363;
  857. font-weight:400;
  858. }
  859. #colophon {
  860. font-size: 85%;
  861. background-color:#1F333D;
  862. border-bottom: 15px solid #343C70;
  863. }
  864. @media only screen and (max-width: 768px) {
  865. #colophon {
  866. font-size:12px;
  867. }
  868. }
  869. .navbar-dark .site-info {
  870. color: #fff;
  871. }
  872. .copyright {
  873. font-size: 0.875rem;
  874. margin-bottom: 0;
  875. text-align: center;
  876. }
  877. .copyright a, footer#colophon a {
  878. color: inherit;
  879. }