您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1310 行
19KB

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