chuz.scss 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  1. @import 'templates/_variables.scss';
  2. :root {
  3. --color-scheme: dark;
  4. --blue: #0084b4;
  5. --indigo: #6610f2;
  6. --purple: #6f42c1;
  7. --pink: #e83e8c;
  8. --red: #dc3545;
  9. --orange: #fd7e14;
  10. --yellow: beige;
  11. --green: #28a745;
  12. --teal: #20c997;
  13. --cyan: #17a2b8;
  14. --white: #fff;
  15. --gray: #6c757d;
  16. --gray-dark: #212529;
  17. --primary: #0084b4;
  18. --secondary: #6c757d;
  19. --success: #28a745;
  20. --info: #17a2b8;
  21. --warning: beige;
  22. --danger: #dc3545;
  23. --light: #dee2e6;
  24. --dark: #212529;
  25. --breakpoint-xs: 0;
  26. --breakpoint-sm: 576px;
  27. --breakpoint-md: 768px;
  28. --breakpoint-lg: 992px;
  29. --breakpoint-xl: 1200px;
  30. --font-family-sans-serif: "Roboto Condensed", sans-serif;
  31. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
  32. }
  33. @media all {
  34. .bg-warning {
  35. color: #212529
  36. }
  37. }
  38. @media all {
  39. #sidebar {
  40. background: #212529
  41. }
  42. }
  43. .sidebar-close {
  44. background: transparent
  45. }
  46. @media all {
  47. .sidebar-close {
  48. color: #f8f9fa
  49. }
  50. }
  51. *,
  52. *::before,
  53. *::after {
  54. box-sizing: border-box
  55. }
  56. html {
  57. font-family: sans-serif;
  58. line-height: 1.15;
  59. -webkit-text-size-adjust: 100%;
  60. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  61. }
  62. article,
  63. aside,
  64. figcaption,
  65. figure,
  66. footer,
  67. header,
  68. hgroup,
  69. main,
  70. nav,
  71. section {
  72. display: block
  73. }
  74. body {
  75. margin: 0;
  76. // font-family: "Roboto Condensed", sans-serif;
  77. font-family: 'Noto Sans TC', sans-serif;
  78. font-weight: 400;
  79. line-height: 1.5;
  80. text-align: left;
  81. font-size: 1rem;
  82. letter-spacing: 2px;
  83. }
  84. @media all {
  85. body {
  86. color: #f8f9fa;
  87. background-color: #212529;
  88. }
  89. }
  90. [tabindex="-1"]:focus:not(:focus-visible) {
  91. outline: 0
  92. }
  93. hr {
  94. box-sizing: content-box;
  95. height: 0;
  96. overflow: visible
  97. }
  98. h1,
  99. h2,
  100. h3,
  101. h4,
  102. h5,
  103. h6 {
  104. margin-top: 0;
  105. margin-bottom: .5rem
  106. }
  107. p {
  108. margin-top: 0;
  109. margin-bottom: 1rem
  110. }
  111. abbr[title],
  112. abbr[data-original-title] {
  113. text-decoration: underline;
  114. text-decoration: underline dotted;
  115. border-bottom: 0;
  116. text-decoration-skip-ink: none;
  117. cursor: help
  118. }
  119. address {
  120. margin-bottom: 1rem;
  121. font-style: normal;
  122. line-height: inherit
  123. }
  124. ol,
  125. ul,
  126. dl {
  127. margin-top: 0;
  128. margin-bottom: 1rem
  129. }
  130. ol ol,
  131. ul ul,
  132. ol ul,
  133. ul ol {
  134. margin-bottom: 0
  135. }
  136. dt {
  137. font-weight: 700
  138. }
  139. dd {
  140. margin-bottom: .5rem;
  141. margin-left: 0
  142. }
  143. blockquote {
  144. margin: 0 0 1rem
  145. }
  146. b,
  147. strong {
  148. font-weight: 700
  149. }
  150. small {
  151. font-size: 80%
  152. }
  153. sub,
  154. sup {
  155. position: relative;
  156. line-height: 0;
  157. vertical-align: baseline;
  158. font-size: 75%
  159. }
  160. sub {
  161. bottom: -.25em
  162. }
  163. sup {
  164. top: -.5em
  165. }
  166. a {
  167. text-decoration: none;
  168. background: transparent;
  169. }
  170. @media all {
  171. a {
  172. /* color: #f8f9fa; */
  173. color: $link-color;
  174. }
  175. }
  176. a:hover {
  177. text-decoration: underline
  178. }
  179. @media all {
  180. a:hover {
  181. color: #cbd3da
  182. }
  183. }
  184. a:not([href]) {
  185. color: inherit;
  186. text-decoration: none
  187. }
  188. a:not([href]):hover {
  189. color: inherit;
  190. text-decoration: none
  191. }
  192. pre,
  193. code,
  194. kbd,
  195. samp {
  196. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  197. font-size: 1em
  198. }
  199. pre {
  200. margin-top: 0;
  201. margin-bottom: 1rem;
  202. overflow: auto
  203. }
  204. figure {
  205. margin: 0 0 1rem
  206. }
  207. img {
  208. vertical-align: middle;
  209. border-style: none
  210. }
  211. svg {
  212. overflow: hidden;
  213. vertical-align: middle
  214. }
  215. table {
  216. border-collapse: collapse
  217. }
  218. caption {
  219. padding-top: .75rem;
  220. padding-bottom: .75rem;
  221. text-align: left;
  222. caption-side: bottom
  223. }
  224. @media all {
  225. caption {
  226. color: #6c757d
  227. }
  228. }
  229. th {
  230. text-align: inherit
  231. }
  232. label {
  233. display: inline-block;
  234. margin-bottom: .5rem
  235. }
  236. button {
  237. border-radius: 0
  238. }
  239. button:focus {
  240. outline: 1px dotted;
  241. outline: 5px auto -webkit-focus-ring-color
  242. }
  243. input,
  244. button,
  245. select,
  246. optgroup,
  247. textarea {
  248. margin: 0;
  249. font-family: inherit;
  250. line-height: inherit;
  251. font-size: inherit
  252. }
  253. button,
  254. input {
  255. overflow: visible
  256. }
  257. button,
  258. select {
  259. text-transform: none
  260. }
  261. select {
  262. word-wrap: normal
  263. }
  264. button,
  265. [type="button"],
  266. [type="reset"],
  267. [type="submit"] {
  268. -webkit-appearance: button
  269. }
  270. button:not(:disabled),
  271. [type="button"]:not(:disabled),
  272. [type="reset"]:not(:disabled),
  273. [type="submit"]:not(:disabled) {
  274. cursor: pointer
  275. }
  276. button::-moz-focus-inner,
  277. [type="button"]::-moz-focus-inner,
  278. [type="reset"]::-moz-focus-inner,
  279. [type="submit"]::-moz-focus-inner {
  280. padding: 0;
  281. border-style: none
  282. }
  283. input[type="radio"],
  284. input[type="checkbox"] {
  285. box-sizing: border-box;
  286. padding: 0
  287. }
  288. input[type="date"],
  289. input[type="time"],
  290. input[type="datetime-local"],
  291. input[type="month"] {
  292. -webkit-appearance: listbox
  293. }
  294. textarea {
  295. overflow: auto;
  296. resize: vertical
  297. }
  298. [type="number"]::-webkit-inner-spin-button,
  299. [type="number"]::-webkit-outer-spin-button {
  300. height: auto
  301. }
  302. [type="search"] {
  303. outline-offset: -2px;
  304. -webkit-appearance: none
  305. }
  306. [type="search"]::-webkit-search-decoration {
  307. -webkit-appearance: none
  308. }
  309. ::-webkit-file-upload-button {
  310. font: inherit;
  311. -webkit-appearance: button
  312. }
  313. output {
  314. display: inline-block
  315. }
  316. summary {
  317. display: list-item;
  318. cursor: pointer
  319. }
  320. template {
  321. display: none
  322. }
  323. [hidden] {
  324. display: none
  325. }
  326. h1,
  327. h2,
  328. h3,
  329. h4,
  330. h5,
  331. h6 {
  332. margin-bottom: .5rem;
  333. font-weight: 400;
  334. line-height: 1.2
  335. }
  336. h1 {
  337. font-size: 2.5rem
  338. }
  339. @media (max-width: 1200px) {
  340. h1 {
  341. font-size: calc(1.375rem + 1.5vw)
  342. }
  343. }
  344. h2 {
  345. font-size: 2rem
  346. }
  347. @media (max-width: 1200px) {
  348. h2 {
  349. font-size: calc(1.325rem + .9vw)
  350. }
  351. }
  352. h3 {
  353. font-size: 1.25rem
  354. }
  355. h4 {
  356. font-size: 1.15rem
  357. }
  358. h5 {
  359. font-size: 1rem
  360. }
  361. h6 {
  362. font-size: 1rem
  363. }
  364. .lead {
  365. font-weight: 400;
  366. font-size: 1.25rem
  367. }
  368. hr {
  369. margin-top: 2.5rem;
  370. margin-bottom: 2.5rem;
  371. border-top: 1px solid silver;
  372. }
  373. img,
  374. amp-img {
  375. border: 0
  376. }
  377. amp-img[class^=i-amp],
  378. amp-img[class^=-amp] {
  379. height: auto;
  380. max-width: 100%
  381. }
  382. .container,
  383. .container-fluid,
  384. .container-xxl,
  385. .container-xl,
  386. .container-lg,
  387. .container-md,
  388. .container-sm {
  389. width: 100%;
  390. padding-right: var(--bs-gutter-x, 0.75rem);
  391. padding-left: var(--bs-gutter-x, 0.75rem);
  392. margin-right: auto;
  393. margin-left: auto;
  394. }
  395. @media (min-width: 576px) {
  396. .container-sm, .container {
  397. max-width: 540px;
  398. }
  399. }
  400. @media (min-width: 768px) {
  401. .container-md, .container-sm, .container {
  402. max-width: 720px;
  403. }
  404. }
  405. @media (min-width: 992px) {
  406. .container-lg, .container-md, .container-sm, .container {
  407. max-width: 960px;
  408. }
  409. }
  410. @media (min-width: 1200px) {
  411. .container-xl, .container-lg, .container-md, .container-sm, .container {
  412. max-width: 1140px;
  413. }
  414. }
  415. @media (min-width: 1400px) {
  416. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  417. max-width: 1320px;
  418. }
  419. }
  420. .row {
  421. --bs-gutter-x: 1.5rem;
  422. --bs-gutter-y: 0;
  423. display: flex;
  424. flex-wrap: wrap;
  425. margin-top: calc(var(--bs-gutter-y) * -1);
  426. margin-right: calc(var(--bs-gutter-x) / -2);
  427. margin-left: calc(var(--bs-gutter-x) / -2);
  428. }
  429. .row > * {
  430. flex-shrink: 0;
  431. width: 100%;
  432. max-width: 100%;
  433. padding-right: calc(var(--bs-gutter-x) / 2);
  434. padding-left: calc(var(--bs-gutter-x) / 2);
  435. margin-top: var(--bs-gutter-y);
  436. }
  437. .col-1,
  438. .col-2,
  439. .col-3,
  440. .col-4,
  441. .col-5,
  442. .col-6,
  443. .col-7,
  444. .col-8,
  445. .col-9,
  446. .col-10,
  447. .col-11,
  448. .col-12,
  449. .col,
  450. .col-auto,
  451. .col-sm-1,
  452. .col-sm-2,
  453. .col-sm-3,
  454. .col-sm-4,
  455. .col-sm-5,
  456. .col-sm-6,
  457. .col-sm-7,
  458. .col-sm-8,
  459. .col-sm-9,
  460. .col-sm-10,
  461. .col-sm-11,
  462. .col-sm-12,
  463. .col-sm,
  464. .col-sm-auto,
  465. .col-md-1,
  466. .col-md-2,
  467. .col-md-3,
  468. .col-md-4,
  469. .col-md-5,
  470. .col-md-6,
  471. .col-md-7,
  472. .col-md-8,
  473. .col-md-9,
  474. .col-md-10,
  475. .col-md-11,
  476. .col-md-12,
  477. .col-md,
  478. .col-md-auto,
  479. .col-lg-1,
  480. .col-lg-2,
  481. .col-lg-3,
  482. .col-lg-4,
  483. .col-lg-5,
  484. .col-lg-6,
  485. .col-lg-7,
  486. .col-lg-8,
  487. .col-lg-9,
  488. .col-lg-10,
  489. .col-lg-11,
  490. .col-lg-12,
  491. .col-lg,
  492. .col-lg-auto,
  493. .col-xl-1,
  494. .col-xl-2,
  495. .col-xl-3,
  496. .col-xl-4,
  497. .col-xl-5,
  498. .col-xl-6,
  499. .col-xl-7,
  500. .col-xl-8,
  501. .col-xl-9,
  502. .col-xl-10,
  503. .col-xl-11,
  504. .col-xl-12,
  505. .col-xl,
  506. .col-xl-auto {
  507. position: relative;
  508. width: 100%;
  509. padding-right: 15px;
  510. padding-left: 15px;
  511. }
  512. .col {
  513. flex-basis: 0;
  514. flex-grow: 1;
  515. max-width: 100%;
  516. }
  517. .col-1 {
  518. flex: 0 0 8.33333%;
  519. max-width: 8.33333%;
  520. }
  521. .col-2 {
  522. flex: 0 0 16.66667%;
  523. max-width: 16.66667%;
  524. }
  525. .col-3 {
  526. flex: 0 0 25%;
  527. max-width: 25%;
  528. }
  529. .col-4 {
  530. flex: 0 0 33.33333%;
  531. max-width: 33.33333%;
  532. }
  533. .col-5 {
  534. flex: 0 0 41.66667%;
  535. max-width: 41.66667%;
  536. }
  537. .col-6 {
  538. flex: 0 0 50%;
  539. max-width: 50%;
  540. }
  541. .col-7 {
  542. flex: 0 0 58.33333%;
  543. max-width: 58.33333%;
  544. }
  545. .col-8 {
  546. flex: 0 0 66.66667%;
  547. max-width: 66.66667%;
  548. }
  549. .col-9 {
  550. flex: 0 0 75%;
  551. max-width: 75%;
  552. }
  553. .col-10 {
  554. flex: 0 0 83.33333%;
  555. max-width: 83.33333%;
  556. }
  557. .col-11 {
  558. flex: 0 0 91.66667%;
  559. max-width: 91.66667%;
  560. }
  561. .col-12 {
  562. flex: 0 0 100%;
  563. max-width: 100%;
  564. }
  565. @media (min-width: 576px) {
  566. .col-sm {
  567. flex-basis: 0;
  568. flex-grow: 1;
  569. max-width: 100%;
  570. }
  571. .col-sm-1 {
  572. flex: 0 0 8.33333%;
  573. max-width: 8.33333%;
  574. }
  575. .col-sm-2 {
  576. flex: 0 0 16.66667%;
  577. max-width: 16.66667%;
  578. }
  579. .col-sm-3 {
  580. flex: 0 0 25%;
  581. max-width: 25%;
  582. }
  583. .col-sm-4 {
  584. flex: 0 0 33.33333%;
  585. max-width: 33.33333%;
  586. }
  587. .col-sm-5 {
  588. flex: 0 0 41.66667%;
  589. max-width: 41.66667%;
  590. }
  591. .col-sm-6 {
  592. flex: 0 0 50%;
  593. max-width: 50%;
  594. }
  595. .col-sm-7 {
  596. flex: 0 0 58.33333%;
  597. max-width: 58.33333%;
  598. }
  599. .col-sm-8 {
  600. flex: 0 0 66.66667%;
  601. max-width: 66.66667%;
  602. }
  603. .col-sm-9 {
  604. flex: 0 0 75%;
  605. max-width: 75%;
  606. }
  607. .col-sm-10 {
  608. flex: 0 0 83.33333%;
  609. max-width: 83.33333%;
  610. }
  611. .col-sm-11 {
  612. flex: 0 0 91.66667%;
  613. max-width: 91.66667%;
  614. }
  615. .col-sm-12 {
  616. flex: 0 0 100%;
  617. max-width: 100%;
  618. }
  619. }
  620. @media (min-width: 768px) {
  621. .col-md {
  622. flex-basis: 0;
  623. flex-grow: 1;
  624. max-width: 100%;
  625. }
  626. .col-md-1 {
  627. flex: 0 0 8.33333%;
  628. max-width: 8.33333%;
  629. }
  630. .col-md-2 {
  631. flex: 0 0 16.66667%;
  632. max-width: 16.66667%;
  633. }
  634. .col-md-3 {
  635. flex: 0 0 25%;
  636. max-width: 25%;
  637. }
  638. .col-md-4 {
  639. flex: 0 0 33.33333%;
  640. max-width: 33.33333%;
  641. }
  642. .col-md-5 {
  643. flex: 0 0 41.66667%;
  644. max-width: 41.66667%;
  645. }
  646. .col-md-6 {
  647. flex: 0 0 50%;
  648. max-width: 50%;
  649. }
  650. .col-md-7 {
  651. flex: 0 0 58.33333%;
  652. max-width: 58.33333%;
  653. }
  654. .col-md-8 {
  655. flex: 0 0 66.66667%;
  656. max-width: 66.66667%;
  657. }
  658. .col-md-9 {
  659. flex: 0 0 75%;
  660. max-width: 75%;
  661. }
  662. .col-md-10 {
  663. flex: 0 0 83.33333%;
  664. max-width: 83.33333%;
  665. }
  666. .col-md-11 {
  667. flex: 0 0 91.66667%;
  668. max-width: 91.66667%;
  669. }
  670. .col-md-12 {
  671. flex: 0 0 100%;
  672. max-width: 100%;
  673. }
  674. .ms-md-1 {
  675. margin-left: 0.25rem !important;
  676. }
  677. .ms-md-2 {
  678. margin-left: 0.5rem !important;
  679. }
  680. .ms-md-3 {
  681. margin-left: 1rem !important;
  682. }
  683. .ms-md-4 {
  684. margin-left: 1.5rem !important;
  685. }
  686. .ms-md-5 {
  687. margin-left: 3rem !important;
  688. }
  689. .justify-content-md-center {
  690. justify-content: center !important;
  691. }
  692. }
  693. @media (min-width: 992px) {
  694. .col-lg {
  695. flex-basis: 0;
  696. flex-grow: 1;
  697. max-width: 100%;
  698. }
  699. .col-lg-1 {
  700. flex: 0 0 8.33333%;
  701. max-width: 8.33333%;
  702. }
  703. .col-lg-2 {
  704. flex: 0 0 16.66667%;
  705. max-width: 16.66667%;
  706. }
  707. .col-lg-3 {
  708. flex: 0 0 25%;
  709. max-width: 25%;
  710. }
  711. .col-lg-4 {
  712. flex: 0 0 33.33333%;
  713. max-width: 33.33333%;
  714. }
  715. .col-lg-5 {
  716. flex: 0 0 41.66667%;
  717. max-width: 41.66667%;
  718. }
  719. .col-lg-6 {
  720. flex: 0 0 50%;
  721. max-width: 50%;
  722. }
  723. .col-lg-7 {
  724. flex: 0 0 58.33333%;
  725. max-width: 58.33333%;
  726. }
  727. .col-lg-8 {
  728. flex: 0 0 66.66667%;
  729. max-width: 66.66667%;
  730. }
  731. .col-lg-9 {
  732. flex: 0 0 75%;
  733. max-width: 75%;
  734. }
  735. .col-lg-10 {
  736. flex: 0 0 83.33333%;
  737. max-width: 83.33333%;
  738. }
  739. .col-lg-11 {
  740. flex: 0 0 91.66667%;
  741. max-width: 91.66667%;
  742. }
  743. .col-lg-12 {
  744. flex: 0 0 100%;
  745. max-width: 100%;
  746. }
  747. }
  748. @media (min-width: 1200px) {
  749. .col-xl {
  750. flex-basis: 0;
  751. flex-grow: 1;
  752. max-width: 100%;
  753. }
  754. .col-xl-1 {
  755. flex: 0 0 8.33333%;
  756. max-width: 8.33333%;
  757. }
  758. .col-xl-2 {
  759. flex: 0 0 16.66667%;
  760. max-width: 16.66667%;
  761. }
  762. .col-xl-3 {
  763. flex: 0 0 25%;
  764. max-width: 25%;
  765. }
  766. .col-xl-4 {
  767. flex: 0 0 33.33333%;
  768. max-width: 33.33333%;
  769. }
  770. .col-xl-5 {
  771. flex: 0 0 41.66667%;
  772. max-width: 41.66667%;
  773. }
  774. .col-xl-6 {
  775. flex: 0 0 50%;
  776. max-width: 50%
  777. }
  778. .col-xl-7 {
  779. flex: 0 0 58.33333%;
  780. max-width: 58.33333%;;
  781. }
  782. .col-xl-8 {
  783. flex: 0 0 66.66667%;
  784. max-width: 66.66667%;
  785. }
  786. .col-xl-9 {
  787. flex: 0 0 75%;
  788. max-width: 75%;
  789. }
  790. .col-xl-10 {
  791. flex: 0 0 83.33333%;
  792. max-width: 83.33333%;
  793. }
  794. .col-xl-11 {
  795. flex: 0 0 91.66667%;
  796. max-width: 91.66667%;
  797. }
  798. .col-xl-12 {
  799. flex: 0 0 100%;
  800. max-width: 100%;
  801. }
  802. }
  803. table {
  804. width: 100%;
  805. margin-bottom: 1rem;
  806. }
  807. table th,
  808. table td {
  809. padding: .3rem;
  810. vertical-align: top;
  811. }
  812. @media all {
  813. table th,
  814. table td {
  815. border: 1px solid #343a40;
  816. }
  817. }
  818. table thead th {
  819. vertical-align: bottom;
  820. }
  821. @media all {
  822. table thead th {
  823. border-bottom: 2px solid #343a40;
  824. }
  825. }
  826. @media all {
  827. table tbody+tbody {
  828. border-top: 2px solid #343a40;
  829. }
  830. }
  831. .form-row {
  832. display: flex;
  833. flex-wrap: wrap;
  834. margin-right: -5px;
  835. margin-left: -5px;
  836. }
  837. .form-row>.col,
  838. .form-row>[class*="col-"] {
  839. padding-right: 5px;
  840. padding-left: 5px;
  841. }
  842. .btn {
  843. display: inline-block;
  844. font-weight: 400;
  845. color: #212529;
  846. text-align: center;
  847. vertical-align: middle;
  848. cursor: pointer;
  849. user-select: none;
  850. background: transparent;
  851. border: 1px solid transparent;
  852. padding: .375rem .75rem;
  853. font-size: 1rem;
  854. line-height: 1.5;
  855. border-radius: .25rem;
  856. }
  857. .btn:hover {
  858. color: #212529;
  859. text-decoration: none;
  860. }
  861. .btn:focus,
  862. .btn.focus {
  863. outline: 0;
  864. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.25);
  865. }
  866. .btn.disabled,
  867. .btn:disabled {
  868. opacity: .65;
  869. }
  870. a.btn.disabled,
  871. fieldset:disabled a.btn {
  872. pointer-events: none;
  873. }
  874. .btn-light {
  875. color: #212529;
  876. border-color: #dee2e6;
  877. background: #dee2e6
  878. }
  879. .btn-light:hover {
  880. color: #212529;
  881. border-color: #c1c9d0;
  882. background: #c8cfd6
  883. }
  884. .btn-light:focus,
  885. .btn-light.focus {
  886. color: #212529;
  887. border-color: #c1c9d0;
  888. background: #c8cfd6;
  889. box-shadow: 0 0 0 .2rem rgba(194, 198, 202, 0.5)
  890. }
  891. .btn-light.disabled,
  892. .btn-light:disabled {
  893. color: #212529;
  894. background: #dee2e6;
  895. border-color: #dee2e6
  896. }
  897. .btn-light:not(:disabled):not(.disabled):active,
  898. .btn-light:not(:disabled):not(.disabled).active,
  899. .show>.btn-light.dropdown-toggle {
  900. color: #212529;
  901. background: #c1c9d0;
  902. border-color: #bac2cb
  903. }
  904. .btn-light:not(:disabled):not(.disabled):active:focus,
  905. .btn-light:not(:disabled):not(.disabled).active:focus,
  906. .show>.btn-light.dropdown-toggle:focus {
  907. box-shadow: 0 0 0 .2rem rgba(194, 198, 202, 0.5)
  908. }
  909. .nav {
  910. display: flex;
  911. flex-wrap: wrap;
  912. padding-left: 0;
  913. margin-bottom: 0;
  914. list-style: none;
  915. }
  916. .card {
  917. position: relative;
  918. display: flex;
  919. flex-direction: column;
  920. min-width: 0;
  921. word-wrap: break-word;
  922. background-color: #fff;
  923. background-clip: border-box;
  924. border: 1px solid rgba(0, 0, 0, 0.125);
  925. }
  926. .card > .list-group {
  927. border-top: inherit;
  928. border-bottom: inherit;
  929. }
  930. .card > .list-group:first-child {
  931. border-top-width: 0;
  932. border-top-left-radius: calc(0.25rem - 1px);
  933. border-top-right-radius: calc(0.25rem - 1px);
  934. }
  935. .card > .list-group:last-child {
  936. border-bottom-width: 0;
  937. border-bottom-right-radius: calc(0.25rem - 1px);
  938. border-bottom-left-radius: calc(0.25rem - 1px);
  939. }
  940. .card > .card-header + .list-group,
  941. .card > .list-group + .card-footer {
  942. border-top: 0;
  943. }
  944. .card-body {
  945. flex: 1 1 auto;
  946. padding: 1rem 1rem;
  947. }
  948. .card-title {
  949. margin-bottom: 0.5rem;
  950. }
  951. .card-subtitle {
  952. margin-top: -0.25rem;
  953. margin-bottom: 0;
  954. }
  955. .card-text:last-child {
  956. margin-bottom: 0;
  957. }
  958. .card-link:hover {
  959. text-decoration: none;
  960. }
  961. .card-link + .card-link {
  962. margin-left: 1rem /* rtl:ignore */;
  963. }
  964. .card-header {
  965. padding: 0.5rem 1rem;
  966. margin-bottom: 0;
  967. background-color: rgba(0, 0, 0, 0.03);
  968. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  969. }
  970. .card-footer {
  971. padding: 0.5rem 1rem;
  972. background-color: rgba(0, 0, 0, 0.03);
  973. border-top: 1px solid rgba(0, 0, 0, 0.125);
  974. }
  975. .card-header-tabs {
  976. margin-right: -0.5rem;
  977. margin-bottom: -0.5rem;
  978. margin-left: -0.5rem;
  979. border-bottom: 0;
  980. }
  981. .card-header-pills {
  982. margin-right: -0.5rem;
  983. margin-left: -0.5rem;
  984. }
  985. .card-img-overlay {
  986. position: absolute;
  987. top: 0;
  988. right: 0;
  989. bottom: 0;
  990. left: 0;
  991. padding: 1rem;
  992. }
  993. .card-img,
  994. .card-img-top,
  995. .card-img-bottom {
  996. width: 100%;
  997. }
  998. .pagination {
  999. display: flex;
  1000. padding-left: 0;
  1001. list-style: none;
  1002. border-radius: .25rem
  1003. }
  1004. .page-link {
  1005. position: relative;
  1006. display: block;
  1007. padding: .5rem .75rem;
  1008. margin-left: -1px;
  1009. line-height: 1.25
  1010. }
  1011. @media all {
  1012. .page-link {
  1013. color: #f8f9fa;
  1014. background: #212529;
  1015. border: 1px solid #495057
  1016. }
  1017. }
  1018. .page-link:hover {
  1019. z-index: 2;
  1020. text-decoration: none
  1021. }
  1022. @media all {
  1023. .page-link:hover {
  1024. color: #cbd3da;
  1025. background: #343a40;
  1026. border-color: #495057
  1027. }
  1028. }
  1029. .page-link:focus {
  1030. z-index: 3;
  1031. outline: 0;
  1032. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.25)
  1033. }
  1034. .page-item:first-child .page-link {
  1035. margin-left: 0;
  1036. border-top-left-radius: .25rem;
  1037. border-bottom-left-radius: .25rem
  1038. }
  1039. .page-item:last-child .page-link {
  1040. border-top-right-radius: .25rem;
  1041. border-bottom-right-radius: .25rem
  1042. }
  1043. .page-item.active .page-link {
  1044. z-index: 3
  1045. }
  1046. @media all {
  1047. .page-item.active .page-link {
  1048. color: #212529;
  1049. background: #0084b4;
  1050. border-color: #0084b4
  1051. }
  1052. }
  1053. .page-item.disabled .page-link {
  1054. pointer-events: none;
  1055. cursor: auto
  1056. }
  1057. @media all {
  1058. .page-item.disabled .page-link {
  1059. color: #ced4da;
  1060. background: #212529;
  1061. border-color: #495057
  1062. }
  1063. }
  1064. header {
  1065. width: 100%;
  1066. z-index: 99999;
  1067. top: 0px;
  1068. }
  1069. @media all {
  1070. header.full-width {
  1071. background: #212529;
  1072. }
  1073. }
  1074. header.fixed {
  1075. position: fixed;
  1076. }
  1077. .mega-menu .header {
  1078. flex: 0 0 100%;
  1079. max-width: 100%;
  1080. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  1081. }
  1082. .clearfix::after {
  1083. display: block;
  1084. clear: both;
  1085. content: ""
  1086. }
  1087. .blog-content {
  1088. color: #808080;
  1089. }
  1090. .d-flex {
  1091. display: flex !important;
  1092. }
  1093. .d-inline-flex {
  1094. display: inline-flex !important;
  1095. }
  1096. .text-start {
  1097. text-align: left !important;
  1098. }
  1099. .text-end {
  1100. text-align: right !important;
  1101. }
  1102. .text-center {
  1103. text-align: center !important;
  1104. }
  1105. .post-title {
  1106. text-align: center;
  1107. }
  1108. .mt-1 {
  1109. margin-top: 0.25rem !important;
  1110. }
  1111. .mt-2 {
  1112. margin-top: 0.5rem !important;
  1113. }
  1114. .mt-3 {
  1115. margin-top: 1rem !important;
  1116. }
  1117. .mt-4 {
  1118. margin-top: 1.5rem !important;
  1119. }
  1120. .mt-5 {
  1121. margin-top: 3rem !important;
  1122. }
  1123. .mb-1 {
  1124. margin-bottom: 0.25rem !important;
  1125. }
  1126. .mb-2 {
  1127. margin-bottom: 0.5rem !important;
  1128. }
  1129. .mb-3 {
  1130. margin-bottom: 1rem !important;
  1131. }
  1132. .mb-4 {
  1133. margin-bottom: 1.5rem !important;
  1134. }
  1135. .mb-5 {
  1136. margin-bottom: 3rem !important;
  1137. }
  1138. .ms-1 {
  1139. margin-left: 0.25rem !important;
  1140. }
  1141. .ms-2 {
  1142. margin-left: 0.5rem !important;
  1143. }
  1144. .ms-3 {
  1145. margin-left: 1rem !important;
  1146. }
  1147. .ms-4 {
  1148. margin-left: 1.5rem !important;
  1149. }
  1150. .ms-5 {
  1151. margin-left: 3rem !important;
  1152. }
  1153. .me-auto {
  1154. margin-right: auto !important;
  1155. }
  1156. .me-1 {
  1157. margin-right: 0.25rem !important;
  1158. }
  1159. .me-2 {
  1160. margin-right: 0.5rem !important;
  1161. }
  1162. .me-3 {
  1163. margin-right: 1rem !important;
  1164. }
  1165. .me-4 {
  1166. margin-right: 1.5rem !important;
  1167. }
  1168. .me-5 {
  1169. margin-right: 3rem !important;
  1170. }
  1171. .p-1 {
  1172. padding: 0.25rem !important;
  1173. }
  1174. .p-2 {
  1175. padding: 0.5rem !important;
  1176. }
  1177. .p-3 {
  1178. padding: 1rem !important;
  1179. }
  1180. .p-4 {
  1181. padding: 1.5rem !important;
  1182. }
  1183. .p-5 {
  1184. padding: 3rem !important;
  1185. }
  1186. .mx-auto {
  1187. margin-right: auto !important;
  1188. margin-left: auto !important;
  1189. }
  1190. .row {
  1191. --bs-gutter-x: 1.5rem;
  1192. --bs-gutter-y: 1rem;
  1193. display: flex;
  1194. flex-wrap: wrap;
  1195. margin-top: calc(var(--bs-gutter-y) * -1);
  1196. margin-right: calc(var(--bs-gutter-x) / -2);
  1197. margin-left: calc(var(--bs-gutter-x) / -2);
  1198. }
  1199. .row > * {
  1200. flex-shrink: 0;
  1201. width: 100%;
  1202. max-width: 100%;
  1203. padding-right: calc(var(--bs-gutter-x) / 2);
  1204. padding-left: calc(var(--bs-gutter-x) / 2);
  1205. margin-top: var(--bs-gutter-y);
  1206. }
  1207. .col {
  1208. flex: 100%;
  1209. }
  1210. .w-50 {
  1211. width: 50% !important;
  1212. }
  1213. .h-100 {
  1214. height: 100% !important;
  1215. }
  1216. .row-cols-auto > * {
  1217. flex: 0 0 auto;
  1218. width: auto;
  1219. }
  1220. .row-cols-1 > * {
  1221. flex: 0 0 auto;
  1222. width: 100%;
  1223. }
  1224. .row-cols-2 > * {
  1225. flex: 0 0 auto;
  1226. width: 50%;
  1227. }
  1228. .row-cols-3 > * {
  1229. flex: 0 0 auto;
  1230. width: 33.3333333333%;
  1231. }
  1232. .row-cols-4 > * {
  1233. flex: 0 0 auto;
  1234. width: 25%;
  1235. }
  1236. .row-cols-5 > * {
  1237. flex: 0 0 auto;
  1238. width: 20%;
  1239. }
  1240. .row-cols-6 > * {
  1241. flex: 0 0 auto;
  1242. width: 16.6666666667%;
  1243. }
  1244. @media (min-width: 576px) {
  1245. .col-sm {
  1246. flex: 1 0 0%;
  1247. }
  1248. .row-cols-sm-auto > * {
  1249. flex: 0 0 auto;
  1250. width: auto;
  1251. }
  1252. .row-cols-sm-1 > * {
  1253. flex: 0 0 auto;
  1254. width: 100%;
  1255. }
  1256. .row-cols-sm-2 > * {
  1257. flex: 0 0 auto;
  1258. width: 50%;
  1259. }
  1260. .row-cols-sm-3 > * {
  1261. flex: 0 0 auto;
  1262. width: 33.3333333333%;
  1263. }
  1264. .row-cols-sm-4 > * {
  1265. flex: 0 0 auto;
  1266. width: 25%;
  1267. }
  1268. .row-cols-sm-5 > * {
  1269. flex: 0 0 auto;
  1270. width: 20%;
  1271. }
  1272. .row-cols-sm-6 > * {
  1273. flex: 0 0 auto;
  1274. width: 16.6666666667%;
  1275. }
  1276. .p-sm-1 {
  1277. padding: 0.25rem !important;
  1278. }
  1279. .p-sm-2 {
  1280. padding: 0.5rem !important;
  1281. }
  1282. .p-sm-3 {
  1283. padding: 1rem !important;
  1284. }
  1285. .p-sm-4 {
  1286. padding: 1.5rem !important;
  1287. }
  1288. .p-sm-5 {
  1289. padding: 3rem !important;
  1290. }
  1291. }
  1292. @media (min-width: 992px) {
  1293. .col-lg {
  1294. flex: 1 0 0%;
  1295. }
  1296. .row-cols-lg-auto > * {
  1297. flex: 0 0 auto;
  1298. width: auto;
  1299. }
  1300. .row-cols-lg-1 > * {
  1301. flex: 0 0 auto;
  1302. width: 100%;
  1303. }
  1304. .row-cols-lg-2 > * {
  1305. flex: 0 0 auto;
  1306. width: 50%;
  1307. }
  1308. .row-cols-lg-3 > * {
  1309. flex: 0 0 auto;
  1310. width: 33.3333333333%;
  1311. }
  1312. .row-cols-lg-4 > * {
  1313. flex: 0 0 auto;
  1314. width: 25%;
  1315. }
  1316. .row-cols-lg-5 > * {
  1317. flex: 0 0 auto;
  1318. width: 20%;
  1319. }
  1320. .row-cols-lg-6 > * {
  1321. flex: 0 0 auto;
  1322. width: 16.6666666667%;
  1323. }
  1324. }
  1325. @media (min-width: 1400px) {
  1326. .col-xxl {
  1327. flex: 1 0 0%;
  1328. }
  1329. .row-cols-xxl-auto > * {
  1330. flex: 0 0 auto;
  1331. width: auto;
  1332. }
  1333. .row-cols-xxl-1 > * {
  1334. flex: 0 0 auto;
  1335. width: 100%;
  1336. }
  1337. .row-cols-xxl-2 > * {
  1338. flex: 0 0 auto;
  1339. width: 50%;
  1340. }
  1341. .row-cols-xxl-3 > * {
  1342. flex: 0 0 auto;
  1343. width: 33.3333333333%;
  1344. }
  1345. .row-cols-xxl-4 > * {
  1346. flex: 0 0 auto;
  1347. width: 25%;
  1348. }
  1349. .row-cols-xxl-5 > * {
  1350. flex: 0 0 auto;
  1351. width: 20%;
  1352. }
  1353. .row-cols-xxl-6 > * {
  1354. flex: 0 0 auto;
  1355. width: 16.6666666667%;
  1356. }
  1357. }
  1358. .toggle,
  1359. [id^=drop] {
  1360. display: none;
  1361. }
  1362. /* Giving a background-color to the nav container. */
  1363. nav {
  1364. margin:0;
  1365. padding: 0;
  1366. background-color: #FFFFFF;
  1367. /* Since we'll have the "ul li" "float:left"
  1368. * we need to add a clear after the container. */
  1369. &:after {
  1370. content:"";
  1371. display:table;
  1372. clear:both;
  1373. }
  1374. /* Removing padding, margin and "list-style" from the "ul",
  1375. * and adding "position:reltive" */
  1376. ul {
  1377. float: right;
  1378. padding:0;
  1379. margin:0;
  1380. list-style: none;
  1381. position: relative;
  1382. li {
  1383. margin: 0px;
  1384. // display:inline-block;
  1385. float: left;
  1386. background-color: #FFFFFF;
  1387. /* Display Dropdowns on Hover */
  1388. &:hover > ul {
  1389. display:inherit;
  1390. }
  1391. }
  1392. /* Hide Dropdowns by Default
  1393. * and giving it a position of absolute */
  1394. ul {
  1395. display: none;
  1396. position: absolute;
  1397. /* has to be the same number as the "line-height" of "nav a" */
  1398. /* top: 60px; */
  1399. top: 50px;
  1400. /* Fisrt Tier Dropdown */
  1401. li {
  1402. width:170px;
  1403. float:none;
  1404. display:list-item;
  1405. position: relative;
  1406. }
  1407. /* Second, Third and more Tiers
  1408. * We move the 2nd and 3rd etc tier dropdowns to the left
  1409. * by the amount of the width of the first tier.
  1410. */
  1411. ul li {
  1412. position: relative;
  1413. top:-60px;
  1414. /* has to be the same number as the "width" of "nav ul ul li" */
  1415. left:170px;
  1416. }
  1417. }
  1418. }
  1419. /* Styling the links */
  1420. a {
  1421. display:block;
  1422. padding:14px 20px;
  1423. color:#656565;
  1424. font-size:12pt;
  1425. font-weight: 400;
  1426. text-decoration:none;
  1427. &:hover {
  1428. background-color: #78AD42;
  1429. color: #fff;
  1430. text-decoration:none;
  1431. }
  1432. }
  1433. }
  1434. /* Change ' +' in order to change the Dropdown symbol */
  1435. li > a:after { content: ' +'; }
  1436. li > a:only-child:after { content: ''; }
  1437. /* Media Queries
  1438. --------------------------------------------- */
  1439. @media all and (max-width : 768px) {
  1440. nav {
  1441. margin: 0;
  1442. }
  1443. /* Hide the navigation menu by default */
  1444. /* Also hide the */
  1445. .toggle + a,
  1446. .menu {
  1447. display: none;
  1448. }
  1449. /* Stylinf the toggle lable */
  1450. .toggle {
  1451. display: block;
  1452. /* background-color: #FFFFFF; */
  1453. padding: 14px 20px;
  1454. color:#656565;
  1455. font-size:17px;
  1456. text-decoration:none;
  1457. border:none;
  1458. &:hover {
  1459. /* background-color: #000000; */
  1460. color:#78AD42;
  1461. }
  1462. }
  1463. /* Display Dropdown when clicked on Parent Lable */
  1464. [id^=drop]:checked + ul {
  1465. display: block;
  1466. }
  1467. /* Change menu item's width to 100% */
  1468. nav ul li {
  1469. display: block;
  1470. width: 100%;
  1471. font-weight: 600;
  1472. }
  1473. nav a:hover,
  1474. nav ul ul ul a {
  1475. background-color: #78AD42;
  1476. }
  1477. nav ul li ul li .toggle,
  1478. nav ul ul a,
  1479. nav ul ul ul a {
  1480. padding:14px 20px;
  1481. color:#FFF;
  1482. font-size:17px;
  1483. }
  1484. /* Hide Dropdowns by Default */
  1485. nav ul ul {
  1486. float: none;
  1487. position:static;
  1488. color: #ffffff;
  1489. /* has to be the same number as the "line-height" of "nav a" */
  1490. }
  1491. /* Hide menus on hover */
  1492. nav ul ul li:hover > ul,
  1493. nav ul li:hover > ul {
  1494. display: none;
  1495. }
  1496. /* Fisrt Tier Dropdown */
  1497. nav ul ul li {
  1498. display: block;
  1499. width: 100%;
  1500. }
  1501. nav ul ul ul li {
  1502. position: static;
  1503. /* has to be the same number as the "width" of "nav ul ul li" */
  1504. }
  1505. }
  1506. @media all and (max-width : 330px) {
  1507. nav ul li {
  1508. display:block;
  1509. width: 94%;
  1510. }
  1511. }
  1512. .widget {
  1513. margin-bottom: 30px;
  1514. padding-bottom: 35px;
  1515. &-title {
  1516. margin-bottom: 15px;
  1517. padding-bottom: 10px;
  1518. font-size: 16px;
  1519. color: #333;
  1520. font-weight: 500;
  1521. border-bottom: 1px solid #dedede;
  1522. }
  1523. }
  1524. .widget.widget-latest-post .media {
  1525. .media-object {
  1526. width: 100px;
  1527. height: auto;
  1528. }
  1529. .media-heading a {
  1530. color: #000;
  1531. font-size: 16px;
  1532. }
  1533. p {
  1534. font-size: 12px;
  1535. color: #808080;
  1536. }
  1537. }
  1538. .widget.widget-category ul li {
  1539. margin-bottom: 10px;
  1540. a {
  1541. color: #837f7e;
  1542. -webkit-transition: all 0.3s ease;
  1543. transition: all 0.3s ease;
  1544. &:before {
  1545. padding-right: 10px;
  1546. }
  1547. &:hover {
  1548. color: #655E7A;
  1549. padding-left: 5px;
  1550. }
  1551. }
  1552. }
  1553. .widget.widget-tag ul li {
  1554. margin-bottom: 10px;
  1555. display: inline-block;
  1556. margin-right: 5px;
  1557. a {
  1558. color: #837f7e;
  1559. display: inline-block;
  1560. padding: 8px 15px;
  1561. border: 1px solid #dedede;
  1562. border-radius: 30px;
  1563. font-size: 14px;
  1564. -webkit-transition: all 0.3s ease;
  1565. transition: all 0.3s ease;
  1566. &:hover {
  1567. color: #fff;
  1568. background: #655E7A;
  1569. border: 1px solid #655E7A;
  1570. }
  1571. }
  1572. }
  1573. .list-group {
  1574. display: flex;
  1575. flex-direction: column;
  1576. padding-left: 0;
  1577. margin-bottom: 0;
  1578. border-radius: 0.25rem;
  1579. &-item {
  1580. position: relative;
  1581. display: block;
  1582. padding: 0.5rem 1rem;
  1583. text-decoration: none;
  1584. background-color: #fff;
  1585. border: 1px solid rgba(0, 0, 0, 0.125);
  1586. &.active {
  1587. z-index: 2;
  1588. color: #fff;
  1589. background-color: #78AD42;
  1590. border-color: #78AD42;
  1591. }
  1592. }
  1593. }
  1594. .d-none {
  1595. display: none !important;
  1596. }
  1597. .d-block {
  1598. display: block !important;
  1599. }
  1600. @media (min-width: 576px) {
  1601. .d-sm-block {
  1602. display: block !important;
  1603. }
  1604. }
  1605. @media (min-width: 768px) {
  1606. .d-md-block {
  1607. display: block !important;
  1608. }
  1609. .d-md-none {
  1610. display: none !important;
  1611. }
  1612. }
  1613. @media (min-width: 992px) {
  1614. .d-lg-none {
  1615. display: none !important;
  1616. }
  1617. }
  1618. input[type="radio"][class="style"]:checked + label {
  1619. color:white;
  1620. background:#6666ff;
  1621. }
  1622. .align-items-center {
  1623. align-items: center !important;
  1624. }
  1625. .order-1 {
  1626. order: 1 !important;
  1627. }
  1628. .order-2 {
  1629. order: 2 !important;
  1630. }
  1631. .title {
  1632. font-size: 1.3rem;
  1633. }
  1634. .footer {
  1635. color:#656565;
  1636. a {
  1637. color:#656565;
  1638. text-decoration:none;
  1639. &:hover {
  1640. color: #78AD42;
  1641. }
  1642. }
  1643. h3 {
  1644. color: black;
  1645. font-weight: 600;
  1646. padding-bottom: 20px;
  1647. }
  1648. .link {
  1649. padding-bottom: 20px;
  1650. }
  1651. }
  1652. @media (min-width: 992px) {
  1653. .order-lg-1 {
  1654. order: 1 !important;
  1655. }
  1656. .order-lg-2 {
  1657. order: 2 !important;
  1658. }
  1659. }
  1660. /* Airspace Template SCSS */
  1661. @mixin tablet{
  1662. @media(max-width:768px) {
  1663. @content;
  1664. }
  1665. }
  1666. .w-25 {
  1667. width: 25% !important;
  1668. }
  1669. .w-50 {
  1670. width: 50% !important;
  1671. }
  1672. .w-75 {
  1673. width: 75% !important;
  1674. }
  1675. .w-100 {
  1676. width: 100% !important;
  1677. }
  1678. @import 'templates/_mixins.scss';
  1679. @import 'templates/_section.scss';
  1680. @import 'templates/_common.scss';
  1681. @import 'templates/_background-image.scss';
  1682. @import 'templates/_page-title.scss';
  1683. @import 'templates/_home.scss';