You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 年之前
3 年之前
3 年之前
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  1. /*
  2. # @name: custom.css
  3. # @version: 0.1
  4. # @creation_date: 2021-10-25
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: Custom CSS to override Bootstrap 5 defaults
  8. # @acknowledgements:
  9. # Bootstrap 5.1.3: https://getbootstrap.com/
  10. */
  11. :root{
  12. --primary-color:#FFFFFF;
  13. --highlight-colour:#EB7F1D;
  14. --hover-link-colour:#EB7F1D;
  15. --light-highlight-colour:#F8D9AA;
  16. --bs-primary-rgb: 13,110,253;
  17. --bs-secondary-rgb: 108,117,125;
  18. --bs-success-rgb: 25,135,84;
  19. --bs-tool-rgb: 13,202,240;
  20. --bs-practice-rgb: 255,193,7;
  21. --bs-book-rgb: 150, 224, 167;
  22. --bs-danger-rgb: 220,53,69;
  23. --bs-light-rgb: 248,249,250;
  24. --bs-dark-rgb: 33,37,41;
  25. --bs-white-rgb: 255,255,255;
  26. --bs-black-rgb: 0,0,0;
  27. }
  28. @import "https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap";
  29. body {
  30. line-height: 1.2;
  31. font-family: Lato, sans-serif;
  32. -webkit-font-smoothing: antialiased;
  33. font-size: 15px;
  34. color: #000000
  35. }
  36. p {
  37. font-weight: 400;
  38. color: #000000;
  39. font-size: 15px;
  40. line-height: 1.8;
  41. font-family: Lato, sans-serif
  42. }
  43. ul {
  44. font-weight: 400;
  45. color: #000000;
  46. font-size: 15px;
  47. line-height: 1.8;
  48. font-family: Lato, sans-serif;
  49. }
  50. h1,
  51. h2,
  52. h3,
  53. h4,
  54. h5,
  55. h6 {
  56. color: #000;
  57. font-family: Lato, sans-serif;
  58. line-height: 1.2
  59. }
  60. .navbar {
  61. position: relative;
  62. display: -ms-flexbox;
  63. display: flex;
  64. -ms-flex-wrap: wrap;
  65. flex-wrap: wrap;
  66. -ms-flex-align: center;
  67. align-items: center;
  68. -ms-flex-pack: justify;
  69. justify-content: space-between;
  70. padding: 0.5rem 1rem;
  71. }
  72. h1,
  73. .h1 {
  74. font-size: 80px
  75. }
  76. @media(max-width:991px) {
  77. h1,
  78. .h1 {
  79. font-size: 65px
  80. }
  81. }
  82. h2,
  83. .h2 {
  84. font-size: 45px
  85. }
  86. @media(max-width:991px) {
  87. h2,
  88. .h2 {
  89. font-size: 35px
  90. }
  91. }
  92. h3,
  93. .h3 {
  94. font-size: 22px
  95. }
  96. h4,
  97. .h4 {
  98. font-size: 18px
  99. }
  100. h5,
  101. .h5 {
  102. font-size: 14px
  103. }
  104. h6,
  105. .h6 {
  106. font-size: 14px
  107. }
  108. .btn {
  109. font-size: 22px;
  110. font-family: Lato, sans-serif;
  111. text-transform: capitalize;
  112. padding: 16px 44px;
  113. border-radius: 5px;
  114. font-weight: 600;
  115. border: 0;
  116. position: relative;
  117. z-index: 1;
  118. transition: .2s ease
  119. }
  120. .btn:focus {
  121. outline: 0;
  122. box-shadow: none !important
  123. }
  124. .btn:active {
  125. box-shadow: none
  126. }
  127. .btn-sm {
  128. font-size: 15px;
  129. padding: 10px 30px
  130. }
  131. .btn-xs {
  132. padding: 5px 10px;
  133. font-size: 15px
  134. }
  135. .btn-transparent {
  136. background: transparent;
  137. color: var(--primary-color);
  138. font-weight: 700
  139. }
  140. .btn-transparent:active,
  141. .btn-transparent:hover {
  142. color: var(--primary-color)
  143. }
  144. body {
  145. background-color: #fff;
  146. overflow-x: hidden
  147. }
  148. ::selection {
  149. background: var(--highlight-colour);
  150. color: #fff
  151. }
  152. .preloader {
  153. position: fixed;
  154. top: 0;
  155. left: 0;
  156. right: 0;
  157. bottom: 0;
  158. background-color: #fff;
  159. z-index: 999999;
  160. display: flex;
  161. align-items: center;
  162. justify-content: center
  163. }
  164. .search-filter-sidebar {
  165. background-color: #efefef;
  166. padding: 5px;
  167. padding-top: 10px;
  168. border: 1px solid #cdcdcd;
  169. }
  170. ol,
  171. ul {
  172. /*list-style-type: circle;*/
  173. margin: 1rem;
  174. }
  175. img {
  176. vertical-align: middle;
  177. border: 0
  178. }
  179. a,
  180. a:hover,
  181. a:focus {
  182. text-decoration: none
  183. }
  184. a,
  185. button,
  186. select {
  187. cursor: pointer;
  188. transition: .2s ease
  189. }
  190. a:focus,
  191. button:focus,
  192. select:focus {
  193. outline: 0
  194. }
  195. a.text-dark:hover {
  196. color: var(--hover-link-colour) !important
  197. }
  198. a:hover {
  199. color: var(--hover-link-colour)
  200. }
  201. .slick-slide {
  202. outline: 0
  203. }
  204. .section {
  205. padding-top: 80px;
  206. padding-bottom: 80px
  207. }
  208. .section-title {
  209. margin-bottom: 80px;
  210. font-family: Lato, sans-serif;
  211. /*font-weight: 700;*/
  212. background: linear-gradient(90deg, var(--highlight-colour), var(--light-highlight-colour)) no-repeat left 123%/98% 45%;
  213. }
  214. .bg-cover {
  215. background-size: cover;
  216. background-position: 50%;
  217. background-repeat: no-repeat
  218. }
  219. .overlay {
  220. position: relative
  221. }
  222. .overlay::before {
  223. position: absolute;
  224. content: '';
  225. height: 100%;
  226. width: 100%;
  227. top: 0;
  228. left: 0;
  229. background: #000;
  230. opacity: .5
  231. }
  232. .outline-0 {
  233. outline: 0 !important
  234. }
  235. .d-unset {
  236. display: unset !important
  237. }
  238. .bg-primary {
  239. background: var(--primary-color) !important
  240. }
  241. .bg-gray {
  242. background: #eaeaea !important
  243. }
  244. .text-primary {
  245. color: var(--primary-color) !important
  246. }
  247. .text-color {
  248. color: #000000
  249. }
  250. .text-dark {
  251. color: #000 !important
  252. }
  253. .text-light {
  254. color: #999 !important
  255. }
  256. .mb-10 {
  257. margin-bottom: 10px !important
  258. }
  259. .mb-20 {
  260. margin-bottom: 20px !important
  261. }
  262. .mb-30 {
  263. margin-bottom: 30px !important
  264. }
  265. .mb-40 {
  266. margin-bottom: 40px !important
  267. }
  268. .mb-50 {
  269. margin-bottom: 50px !important
  270. }
  271. .mb-60 {
  272. margin-bottom: 60px !important
  273. }
  274. .mb-70 {
  275. margin-bottom: 70px !important
  276. }
  277. .mb-80 {
  278. margin-bottom: 80px !important
  279. }
  280. .mb-90 {
  281. margin-bottom: 90px !important
  282. }
  283. .mb-100 {
  284. margin-bottom: 100px !important
  285. }
  286. .zindex-1 {
  287. z-index: 1
  288. }
  289. .rounded-lg {
  290. border-radius: 15px
  291. }
  292. .overflow-hidden {
  293. overflow: hidden
  294. }
  295. .font-primary {
  296. font-family: Lato, sans-serif !important
  297. }
  298. .font-secondary {
  299. font-family: Lato, serif !important
  300. }
  301. .font-secondary {
  302. font-family: Lato, sans-serif;
  303. /*font-weight: 700 !important;*/
  304. }
  305. .font-tertiary {
  306. font-family: Lato, sans-serif;
  307. font-style: italic;
  308. font-weight: 200;
  309. font-size: 14px;
  310. }
  311. .shadow {
  312. box-shadow: 0 18px 39.1px 6.9px rgba(224, 241, 255, .34) !important
  313. }
  314. .bg-dark {
  315. background-color: #222 !important
  316. }
  317. .icon {
  318. font-size: 45px
  319. }
  320. .icon-bg {
  321. height: 100px;
  322. width: 100px;
  323. line-height: 100px;
  324. text-align: center
  325. }
  326. .icon-light {
  327. color: var(--highlight-colour);
  328. }
  329. .slick-dots {
  330. text-align: center;
  331. padding-left: 0
  332. }
  333. .slick-dots li {
  334. display: inline-block;
  335. margin: 2px
  336. }
  337. .slick-dots li.slick-active button {
  338. background: rgba(0, 0, 0, .5);
  339. width: 25px
  340. }
  341. .slick-dots li button {
  342. height: 6px;
  343. width: 12px;
  344. background: rgba(0, 0, 0, .5);
  345. color: transparent;
  346. border-radius: 10px;
  347. overflow: hidden;
  348. transition: .2s ease;
  349. border: 0
  350. }
  351. .form-control {
  352. border: 0;
  353. border-radius: 0;
  354. border-bottom: 1px solid #c7c7c7;
  355. height: 60px
  356. }
  357. .form-control:focus {
  358. border-color: var(--primary-color);
  359. outline: 0;
  360. box-shadow: none !important
  361. }
  362. textarea.form-control {
  363. height: 120px
  364. }
  365. .card {
  366. border: 0;
  367. height: 100%
  368. }
  369. .card-header {
  370. border: 0
  371. }
  372. .card-footer {
  373. border: 0
  374. }
  375. .navigation {
  376. padding: 15px 130px;
  377. transition: .3s ease
  378. }
  379. .navigation.nav-bg {
  380. background-color: var(--primary-color);
  381. padding: 5px 5px
  382. }
  383. @media(max-width:991px) {
  384. .navigation.nav-bg {
  385. padding: 15px 20px
  386. }
  387. }
  388. @media(max-width:991px) {
  389. .navigation {
  390. padding: 20px;
  391. background: var(--primary-color)
  392. }
  393. }
  394. .navbar .nav-item .nav-link {
  395. font-family: Lato, sans-serif;
  396. font-weight: 700;
  397. text-transform: uppercase;
  398. padding: 15px
  399. }
  400. .navbar .nav-item.active .nav-link{
  401. color: #52f8f4;
  402. }
  403. .navbar-dark .navbar-nav .nav-link {
  404. color: #fff;
  405. }
  406. .hero-area {
  407. padding: 250px 0 200px;
  408. position: relative
  409. }
  410. @media(max-width:767px) {
  411. .hero-area {
  412. padding: 200px 0 150px;
  413. overflow: hidden
  414. }
  415. }
  416. .hero-area h1 {
  417. position: relative;
  418. z-index: 2
  419. }
  420. .layer {
  421. position: absolute;
  422. z-index: 1
  423. }
  424. #l1 {
  425. bottom: 0;
  426. left: 0
  427. }
  428. #l2 {
  429. top: 190px;
  430. left: -250px
  431. }
  432. #l3 {
  433. top: 200px;
  434. left: 40%
  435. }
  436. #l4 {
  437. top: 200px;
  438. right: 40%
  439. }
  440. #l5 {
  441. top: 100px;
  442. right: -150px
  443. }
  444. #l6 {
  445. bottom: -20px;
  446. left: 10%
  447. }
  448. #l7 {
  449. bottom: 100px;
  450. left: 20%
  451. }
  452. #l8 {
  453. bottom: 160px;
  454. right: 45%
  455. }
  456. #l9 {
  457. bottom: 100px;
  458. right: -10px
  459. }
  460. .layer-bg {
  461. position: absolute;
  462. bottom: 0;
  463. left: 0;
  464. z-index:-1;
  465. }
  466. .progress-wrapper {
  467. height: 130px;
  468. overflow: hidden
  469. }
  470. .wave {
  471. position: absolute;
  472. width: 100%;
  473. height: 100%
  474. }
  475. .wave::before,
  476. .wave::after {
  477. content: "";
  478. position: absolute;
  479. width: 800px;
  480. height: 800px;
  481. bottom: 0;
  482. left: 50%;
  483. background-color: rgba(255, 255, 255, .4);
  484. border-radius: 45%;
  485. transform: translateX(-50%) rotate(0);
  486. animation: rotate 6s linear infinite;
  487. z-index: 10
  488. }
  489. .wave::after {
  490. border-radius: 47%;
  491. background-color: rgba(255, 255, 255, .9);
  492. transform: translateX(-50%) rotate(0);
  493. animation: rotate 10s linear -5s infinite;
  494. z-index: 20
  495. }
  496. @keyframes rotate {
  497. 50% {
  498. transform: translateX(-50%) rotate(180deg)
  499. }
  500. 100% {
  501. transform: translateX(-50%) rotate(360deg)
  502. }
  503. }
  504. .edu-bg-image {
  505. position: absolute;
  506. left: 0;
  507. top: -300px;
  508. z-index: -1
  509. }
  510. .hover-bg-primary {
  511. transition: .3s ease
  512. }
  513. .hover-bg-primary:hover {
  514. background: var(--primary-color)
  515. }
  516. .hover-bg-primary:hover * {
  517. color: #fff
  518. }
  519. .active-bg-primary {
  520. transition: .3s ease;
  521. background: var(--light-highlight-colour)
  522. }
  523. .active-bg-primary * {
  524. color: #000000
  525. }
  526. .hover-shadow {
  527. transition: .2s ease
  528. }
  529. .hover-shadow:hover {
  530. box-shadow: 0 18px 40px 8px rgba(224, 241, 255, .54) !important
  531. }
  532. .hover-wrapper {
  533. overflow: hidden;
  534. padding: 25px;
  535. }
  536. .hover-wrapper img {
  537. transition: .3s ease;
  538. transform: scale(1.1)
  539. }
  540. .hover-wrapper:hover img {
  541. transform: scale(1)
  542. }
  543. .hover-wrapper:hover .hover-overlay {
  544. opacity: 1;
  545. visibility: visible
  546. }
  547. .hover-overlay {
  548. position: absolute;
  549. height: 100%;
  550. width: 100%;
  551. border-radius: inherit;
  552. top: 0;
  553. left: 0;
  554. background: rgba(0, 0, 0, .3);
  555. opacity: 0;
  556. visibility: hidden;
  557. transition: .3s ease
  558. }
  559. .hover-content {
  560. position: absolute;
  561. top: 50%;
  562. transform: translateY(-50%);
  563. left: 0;
  564. right: 0;
  565. text-align: center
  566. }
  567. .testimonial-content strong {
  568. color: #2bfdff;
  569. font-weight: 400
  570. }
  571. .testimonial-bg-shapes .container {
  572. position: relative;
  573. z-index: 1
  574. }
  575. .testimonial-bg-shapes .bg-map {
  576. position: absolute;
  577. left: 50%;
  578. top: 50%;
  579. transform: translate(-50%, -50%)
  580. }
  581. .testimonial-bg-shapes .bg-shape-1 {
  582. position: absolute;
  583. left: 100px;
  584. top: -50px
  585. }
  586. .testimonial-bg-shapes .bg-shape-2 {
  587. position: absolute;
  588. right: 150px;
  589. top: 50px
  590. }
  591. .testimonial-bg-shapes .bg-shape-3 {
  592. position: absolute;
  593. right: 50px;
  594. top: 200px
  595. }
  596. .testimonial-bg-shapes .bg-shape-4 {
  597. position: absolute;
  598. left: 100px;
  599. bottom: 200px
  600. }
  601. .testimonial-bg-shapes .bg-shape-5 {
  602. position: absolute;
  603. right: 200px;
  604. bottom: -50px
  605. }
  606. /*.footer-section {
  607. padding-top: 200px
  608. }*/
  609. .footer-section a {
  610. color: #fff;
  611. }
  612. .footer-bottom a {
  613. color: #999;
  614. text-decoration: underline;
  615. }
  616. .footer-section a:hover {
  617. color: #fff;
  618. text-decoration: underline;
  619. }
  620. .section-on-footer {
  621. margin-bottom: -250px
  622. }
  623. .shadow-down {
  624. position: relative
  625. }
  626. .shadow-down::before {
  627. position: absolute;
  628. content: "";
  629. box-shadow: 0 0 80.75px 14.25px rgba(224, 241, 255, .34);
  630. height: 100%;
  631. width: 100%;
  632. left: 0;
  633. top: 0;
  634. z-index: -1
  635. }
  636. .card-lg {
  637. flex-direction: row-reverse;
  638. align-items: center
  639. }
  640. @media(max-width:991px) {
  641. .card-lg {
  642. flex-direction: column
  643. }
  644. }
  645. blockquote {
  646. display: inline-block;
  647. padding: 10px 20px;
  648. background: #eaeaea;
  649. border-left: 2px solid var(--primary-color);
  650. font-style: italic;
  651. font-size: 22px
  652. }
  653. .content * {
  654. margin-bottom: 20px
  655. }
  656. .content strong {
  657. font-family: Lato,serif;
  658. color: #000;
  659. line-height: 1.5;
  660. }
  661. .content img {
  662. max-width: 100%;
  663. height: auto;
  664. margin: 0 auto 15px;
  665. display: block;
  666. text-align: center;
  667. }
  668. .page-title-alt {
  669. padding: 350px 0 70px
  670. }
  671. .border-thick {
  672. border: 10px solid
  673. }
  674. .drag-lg-top {
  675. margin-top: -230px
  676. }
  677. @media(max-width:991px) {
  678. .drag-lg-top {
  679. margin-top: 0
  680. }
  681. }
  682. .page-title-alt .container {
  683. position: relative;
  684. z-index: 1
  685. }
  686. .page-title-alt .bg-shape-1 {
  687. position: absolute;
  688. left: 0;
  689. top: 0;
  690. height: 100%
  691. }
  692. .page-title-alt .bg-shape-2 {
  693. position: absolute;
  694. left: 70px;
  695. top: 100px
  696. }
  697. .page-title-alt .bg-shape-3 {
  698. position: absolute;
  699. left: 30%;
  700. top: 50px;
  701. transform: rotate(180deg)
  702. }
  703. .page-title-alt .bg-shape-4 {
  704. position: absolute;
  705. left: 100px;
  706. bottom: 100px
  707. }
  708. .page-title-alt .bg-shape-5 {
  709. position: absolute;
  710. left: 40%;
  711. bottom: -25px
  712. }
  713. .page-title-alt .bg-shape-6 {
  714. position: absolute;
  715. bottom: 100px;
  716. right: -100px
  717. }
  718. .page-title {
  719. padding: 250px 0 150px
  720. }
  721. .page-title .container {
  722. position: relative;
  723. z-index: 1
  724. }
  725. .page-title .bg-shape-1 {
  726. position: absolute;
  727. left: 0;
  728. bottom: 0;
  729. width: 100%
  730. }
  731. .page-title .bg-shape-2 {
  732. position: absolute;
  733. left: -20px;
  734. top: -10px
  735. }
  736. .page-title .bg-shape-3 {
  737. position: absolute;
  738. left: 10%;
  739. top: 100px
  740. }
  741. .page-title .bg-shape-4 {
  742. position: absolute;
  743. left: 50%;
  744. top: -20px
  745. }
  746. .page-title .bg-shape-5 {
  747. position: absolute;
  748. left: 90px;
  749. bottom: -50px;
  750. transform: rotate(180deg)
  751. }
  752. .page-title .bg-shape-6 {
  753. position: absolute;
  754. right: 20%;
  755. bottom: -20px
  756. }
  757. .page-title .bg-shape-7 {
  758. position: absolute;
  759. right: -220px;
  760. bottom: -100px
  761. }
  762. .filter-controls li {
  763. cursor: pointer
  764. }
  765. .filter-controls li.active {
  766. font-weight: 700
  767. }
  768. .social-icons a{
  769. height: 100px;
  770. width: 100px;
  771. line-height: 102px;
  772. border-radius: 50%;
  773. display: block;
  774. box-shadow: 0 18px 39.1px 6.9px rgba(224,241,255,.34);
  775. color: #fff;
  776. background-color: var(--primary-color);
  777. font-size: 20px;
  778. text-align: center;
  779. }
  780. .project-meta{
  781. display: flex;
  782. align-items: center;
  783. }
  784. .project-meta i{
  785. height: 100px;
  786. min-width: 100px;
  787. line-height: 100px;
  788. background-color: #fff;
  789. color: var(--primary-color);
  790. border-radius: 50%;
  791. text-align: center;
  792. display: block;
  793. box-shadow: 0 18px 39.1px 6.9px rgba(224,241,255,.34);
  794. font-size: 30px;
  795. }
  796. .project-meta h4{
  797. font-weight: bold;
  798. font-size: 24px;
  799. }
  800. .project-meta p{
  801. margin-bottom: 0;
  802. }
  803. summary {
  804. color: #000;
  805. font-family: Lato, sans-serif;
  806. line-height: 1.2;
  807. font-size: 22px;
  808. font-weight: 500;
  809. }
  810. details {
  811. font-weight: 400;
  812. color: #000000;
  813. font-size: 15px;
  814. line-height: 1.8;
  815. font-family: Lato,sans-serif;
  816. margin-bottom: 20px;
  817. }
  818. .dropdown-item.active, .dropdown-item:active {
  819. background-color: var(--highlight-colour);
  820. }
  821. a {
  822. color: #0062F5;
  823. }
  824. blockquote a {
  825. color: #005CE6;
  826. }
  827. .font-secondary {
  828. font-family: Lato,sans-serif;
  829. font-weight: 400!important;
  830. }
  831. .title {
  832. font-size: 22px
  833. }
  834. .footer-title {
  835. font-size: 18px
  836. }
  837. .light-paragraph {
  838. font-family: Lato,sans-serif;
  839. font-weight: 200!important;
  840. }
  841. @media (max-width: 544px) {
  842. h1 {font-size:1.5rem;} /*1rem = 16px*/
  843. }
  844. h2 {
  845. background: linear-gradient(90deg, var(--highlight-colour), var(--light-highlight-colour)) no-repeat left 123%/98% 45%;
  846. }
  847. table{
  848. width:100%;
  849. margin-bottom:1rem;
  850. color:#212529
  851. }
  852. table td,.table th{
  853. padding:.75rem;
  854. vertical-align:top;
  855. border-top:1px solid #dee2e6
  856. }
  857. table thead th{
  858. text-align:center;
  859. vertical-align:bottom;
  860. border-bottom:2px solid #dee2e6
  861. }
  862. table tbody+tbody{
  863. border-top:2px solid #dee2e6
  864. }
  865. main > .container {
  866. padding: 60px 15px 0;
  867. }
  868. .carousel-control-next,
  869. .carousel-control-prev,
  870. .carousel-indicators {
  871. filter: invert(100%);
  872. }
  873. .bg-tool {
  874. --bs-bg-opacity: 1;
  875. background-color: rgba(var(--bs-tool-rgb),var(--bs-bg-opacity))!important;
  876. }
  877. .bg-practice {
  878. --bs-bg-opacity: 1;
  879. background-color: rgba(var(--bs-practice-rgb),var(--bs-bg-opacity))!important;
  880. }
  881. .bg-book {
  882. --bs-bg-opacity: 1;
  883. background-color: rgba(var(--bs-book-rgb),var(--bs-bg-opacity))!important;
  884. }
  885. .drop {
  886. position: relative;
  887. -webkit-user-select: none;
  888. -moz-user-select: none;
  889. -ms-user-select: none;
  890. user-select: none;
  891. }
  892. .drop.open {
  893. z-index: 100;
  894. }
  895. .drop.open .drop-screen {
  896. z-index: 100;
  897. display: block;
  898. }
  899. .drop.open .drop-options {
  900. z-index: 200;
  901. max-height: 200px;
  902. }
  903. .drop.open .drop-display {
  904. z-index: 200;
  905. border-color: #465;
  906. }
  907. .drop select {
  908. display: none;
  909. }
  910. .drop .drop-screen {
  911. position: fixed;
  912. width: 100%;
  913. height: 100%;
  914. background: #000;
  915. top: 0px;
  916. left: 0px;
  917. opacity: 0;
  918. display: none;
  919. z-index: 1;
  920. }
  921. .link {
  922. text-align: center;
  923. margin: 20px 0px;
  924. color:#8CACD7;
  925. }
  926. .drop .drop-display {
  927. position: relative;
  928. padding: 0px 20px 5px 5px;
  929. border: 4px solid #444;
  930. width: 100%;
  931. background: #FFF;
  932. z-index: 1;
  933. margin: 0px;
  934. font-size: 16px;
  935. min-height: 58px;
  936. }
  937. .drop .drop-display:hover:after {
  938. opacity: 0.75;
  939. }
  940. .drop .drop-display:after {
  941. font-family: 'Material Icons';
  942. content: "\e5c6";
  943. position: absolute;
  944. right: 10px;
  945. top: 12px;
  946. font-size: 24px;
  947. color: #444;
  948. }
  949. .drop .drop-display .item {
  950. position: relative;
  951. display: inline-block;
  952. border: 2px solid #333;
  953. margin: 5px 5px -4px 0px;
  954. padding: 0px 25px 0px 10px;
  955. overflow: hidden;
  956. height: 40px;
  957. line-height: 36px;
  958. }
  959. .drop .drop-display .item .btnclose {
  960. color: #444;
  961. position: absolute;
  962. font-size: 16px;
  963. right: 5px;
  964. top: 10px;
  965. cursor: pointer;
  966. }
  967. .drop .drop-display .item .btnclose:hover {
  968. opacity: 0.75;
  969. }
  970. .drop .drop-display .item.remove {
  971. -webkit-animation: removeSelected 0.2s, hide 1s infinite;
  972. animation: removeSelected 0.2s, hide 1s infinite;
  973. -webkit-animation-delay: 0s, 0.2s;
  974. animation-delay: 0s, 0.2s;
  975. }
  976. .drop .drop-display .item.add {
  977. -webkit-animation: addSelected 0.2s;
  978. animation: addSelected 0.2s;
  979. }
  980. .drop .drop-display .item.hide {
  981. display: none;
  982. }
  983. .drop .drop-options {
  984. background: #444;
  985. box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  986. position: absolute;
  987. width: 100%;
  988. max-height: 0px;
  989. overflow-y: auto;
  990. transition: all 0.25s linear;
  991. z-index: 1;
  992. }
  993. .drop .drop-options a {
  994. display: block;
  995. height: 40px;
  996. line-height: 40px;
  997. padding: 0px 20px;
  998. color: white;
  999. position: relative;
  1000. max-height: 40px;
  1001. transition: all 1s;
  1002. overflow: hidden;
  1003. }
  1004. .drop .drop-options a:hover {
  1005. background: #465;
  1006. cursor: pointer;
  1007. }
  1008. .drop .drop-options a.remove {
  1009. -webkit-animation: removeOption 0.2s;
  1010. animation: removeOption 0.2s;
  1011. max-height: 0px;
  1012. }
  1013. .drop .drop-options a.add {
  1014. -webkit-animation: addOption 0.2s;
  1015. animation: addOption 0.2s;
  1016. }
  1017. .drop .drop-options a.hide {
  1018. display: none;
  1019. }
  1020. @-webkit-keyframes pop {
  1021. from {
  1022. -webkit-transform: scale(0);
  1023. transform: scale(0);
  1024. }
  1025. to {
  1026. -webkit-transform: scale(1);
  1027. transform: scale(1);
  1028. }
  1029. }
  1030. @keyframes pop {
  1031. from {
  1032. -webkit-transform: scale(0);
  1033. transform: scale(0);
  1034. }
  1035. to {
  1036. -webkit-transform: scale(1);
  1037. transform: scale(1);
  1038. }
  1039. }
  1040. @-webkit-keyframes removeOption {
  1041. from {
  1042. max-height: 40px;
  1043. }
  1044. to {
  1045. max-height: 0px;
  1046. }
  1047. }
  1048. @keyframes removeOption {
  1049. from {
  1050. max-height: 40px;
  1051. }
  1052. to {
  1053. max-height: 0px;
  1054. }
  1055. }
  1056. @-webkit-keyframes addOption {
  1057. from {
  1058. max-height: 0px;
  1059. }
  1060. to {
  1061. max-height: 40px;
  1062. }
  1063. }
  1064. @keyframes addOption {
  1065. from {
  1066. max-height: 0px;
  1067. }
  1068. to {
  1069. max-height: 40px;
  1070. }
  1071. }
  1072. @-webkit-keyframes removeSelected {
  1073. from {
  1074. -webkit-transform: scale(1);
  1075. transform: scale(1);
  1076. }
  1077. to {
  1078. -webkit-transform: scale(0);
  1079. transform: scale(0);
  1080. }
  1081. }
  1082. @keyframes removeSelected {
  1083. from {
  1084. -webkit-transform: scale(1);
  1085. transform: scale(1);
  1086. }
  1087. to {
  1088. -webkit-transform: scale(0);
  1089. transform: scale(0);
  1090. }
  1091. }
  1092. @-webkit-keyframes addSelected {
  1093. from {
  1094. -webkit-transform: scale(0);
  1095. transform: scale(0);
  1096. }
  1097. to {
  1098. -webkit-transform: scale(1);
  1099. transform: scale(1);
  1100. }
  1101. }
  1102. @keyframes addSelected {
  1103. from {
  1104. -webkit-transform: scale(0);
  1105. transform: scale(0);
  1106. }
  1107. to {
  1108. -webkit-transform: scale(1);
  1109. transform: scale(1);
  1110. }
  1111. }
  1112. @-webkit-keyframes hide {
  1113. from, to {
  1114. max-height: 0px;
  1115. max-width: 0px;
  1116. padding: 0px;
  1117. margin: 0px;
  1118. border-width: 0px;
  1119. }
  1120. }
  1121. @keyframes hide {
  1122. from, to {
  1123. max-height: 0px;
  1124. max-width: 0px;
  1125. padding: 0px;
  1126. margin: 0px;
  1127. border-width: 0px;
  1128. }
  1129. }