others.less 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709
  1. /* scrollbar */
  2. .slimScrollBar { .border-radius(0) !important; background-color: @themeColor!important; }
  3. .slimScrollRail { .border-radius(0) !important; }
  4. /* Select2 custom styles */
  5. .select2-container-multi {
  6. .select2-choices {
  7. .select2-search-choice {
  8. border: 1px solid @default-border-color;
  9. background-color: @white;
  10. }
  11. }
  12. }
  13. // Profile Card style
  14. .@{brand}-team-member {
  15. margin-bottom:15px;
  16. box-shadow: @box-shadow;
  17. cursor: pointer;
  18. .profile-card {
  19. width:100%;
  20. position:relative;
  21. overflow:hidden;
  22. color: @white;
  23. text-align:center;
  24. border-radius: 4px;
  25. .animate {
  26. .transition(all 0.3s ease-in-out);
  27. }
  28. > img {
  29. background: rgba(0, 0, 0, 0.50);
  30. opacity: 0.90;
  31. }
  32. .profile-card-details {
  33. width:100%;
  34. height:100%;
  35. position:absolute;
  36. bottom:-100%;
  37. left:0;
  38. padding:0 15px;
  39. color: @white;
  40. .profile-card-header {
  41. width:100%;
  42. height:100%;
  43. height:auto;
  44. position:absolute;
  45. bottom:-100%;
  46. bottom:100%;
  47. left:0;
  48. padding:10px 5px;
  49. background: rgba(0, 0, 0, 0.70);
  50. h4, .h4, span {
  51. margin:0;
  52. padding:0;
  53. color: @white;
  54. }
  55. }
  56. .profile-card-detail .social {
  57. list-style:none;
  58. padding:0px;
  59. margin-top:25px;
  60. li {
  61. padding: 0px;
  62. display: inline-block;
  63. margin-right: 5px;
  64. a {
  65. color: @brand-secondary;
  66. .fab {
  67. font-size: 27px;
  68. }
  69. &:hover, &:focus {
  70. color: lighten(@brand-secondary, 5%);
  71. }
  72. }
  73. &:last-child {
  74. margin: 0;
  75. }
  76. }
  77. }
  78. }
  79. .profile-card-details::-webkit-scrollbar {
  80. width:8px;
  81. }
  82. .profile-card-details::-webkit-scrollbar-button {
  83. width:8px;
  84. height:0px;
  85. }
  86. .profile-card-details::-webkit-scrollbar-track {
  87. background:transparent;
  88. }
  89. .profile-card-details::-webkit-scrollbar-thumb {
  90. background:none;
  91. }
  92. .profile-card-details::-webkit-scrollbar-thumb:hover {
  93. background:none;
  94. }
  95. }
  96. &:hover {
  97. .profile-card-details {
  98. bottom:0px;
  99. overflow:auto;
  100. padding-bottom:15px;
  101. background: rgba(0, 0, 0, 0.70);
  102. .profile-card-header {
  103. position:relative;
  104. bottom:0px;
  105. padding-top:45px;
  106. padding-bottom:25px;
  107. background: none;
  108. border-bottom: 1px solid @white;
  109. }
  110. }
  111. }
  112. .profile-discription {
  113. padding: 15px;
  114. cursor: pointer;
  115. display: none;
  116. }
  117. }
  118. .@{brand}-box {
  119. margin-bottom: 20px;
  120. a, &:hover, &:active, &:focus {
  121. text-decoration: none!important;
  122. }
  123. .media {
  124. padding: 10px 0;
  125. .pull-left {
  126. margin-right: 0;
  127. }
  128. }
  129. .border-right, &.border-right {
  130. border-right: 1px dotted @default-border-color!important;
  131. }
  132. @media (max-width:991px) {
  133. .border-right, &.border-right {
  134. border-right: 1px dotted transparent!important;
  135. }
  136. }
  137. .media-body {
  138. padding-right: 10px;
  139. padding-left: 10px;
  140. .media-heading {
  141. font-weight: 500;
  142. }
  143. }
  144. .icon-box {
  145. display: flex;
  146. align-items: center;
  147. justify-content: center;
  148. font-size: 1.50rem;
  149. width: 50px; height: 50px;
  150. border: 2px solid @default-border-color;
  151. .border-radius(100%);
  152. }
  153. .feature-icon {
  154. display: flex;
  155. align-items: center;
  156. justify-content: center;
  157. img {
  158. max-width: 100px;
  159. }
  160. }
  161. &.s2 {
  162. position: relative;
  163. padding: 30px 15px;
  164. text-align: center;
  165. margin: 15px 0;
  166. box-shadow: @box-shadow;
  167. transition: all 0.3s ease-in-out;
  168. [class*="fa-"] {
  169. font-size: 5em;
  170. }
  171. p {
  172. margin-bottom: 0;
  173. }
  174. &:hover, &:focus, &.active {
  175. transform: translateY(-5px);
  176. }
  177. }
  178. &.s3 {
  179. text-align: center;
  180. padding: 15px;
  181. [class*="fa-"], [class*="glyphicon-"] {
  182. font-size: 5em;
  183. }
  184. }
  185. &.s4 {
  186. position: relative;
  187. display: block;
  188. text-decoration: none;
  189. padding: 30px;
  190. box-shadow: @box-shadow;
  191. transition: all 0.3s ease-in-out;
  192. border-radius: 4px;
  193. overflow: hidden;
  194. h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  195. }
  196. &:hover, &:focus {
  197. transform: translateY(-5px);
  198. }
  199. &.static {
  200. &:hover, &:focus {
  201. transform: translateY(0);
  202. &:before {
  203. display: none;
  204. }
  205. }
  206. }
  207. }
  208. }
  209. .partners-slider {
  210. .owl-item {
  211. img {
  212. opacity:0.5;
  213. &:hover, &:focus {
  214. opacity:1;
  215. }
  216. }
  217. }
  218. }
  219. mark {
  220. background-color: @sticker-bg;
  221. .text-color(@sticker-bg);
  222. display: inline-block;
  223. padding: .08em .2em;
  224. margin: -.08em 0;
  225. position: relative;
  226. line-height: 1.42857143;
  227. font-weight: 700;
  228. a {
  229. .text-color(@sticker-bg)!important;
  230. text-decoration: underline;
  231. }
  232. &:after {
  233. content: "";
  234. background-color: @sticker-bg;
  235. position: absolute;
  236. top: 0;
  237. right: -.1em;
  238. width: .2em;
  239. height: 1.535em;
  240. .transform( skew(-7deg,0));
  241. }
  242. }
  243. .@{brand}-latest-promo {
  244. background-color: #fedc45;
  245. color: #000;
  246. padding: 15px;
  247. display: block;
  248. text-decoration: none!important;
  249. .promo-container {
  250. width: 100%;
  251. display: flex;
  252. align-items: center;
  253. justify-content: space-between;
  254. flex-direction: column;
  255. text-align: center;
  256. @media (min-width: 636px) {
  257. font-size: 18px;
  258. }
  259. @media (min-width: 992px) {
  260. flex-direction: row;
  261. }
  262. .counter {
  263. ul {
  264. list-style: none;
  265. margin: 0; padding: 0;
  266. display: flex;
  267. align-items: center;
  268. flex-direction: row;
  269. justify-content: space-between;
  270. li {
  271. margin-right: 5px;
  272. font-size: 90%;
  273. &:last-child {
  274. margin-right: 0;
  275. }
  276. #offer-Days, #offer-Hours, #offer-Minutes, #offer-Seconds {
  277. font-size: 110%;
  278. font-weight: 500;
  279. }
  280. }
  281. }
  282. }
  283. }
  284. &:hover, &:focus {
  285. color: #000;
  286. }
  287. }
  288. @media (min-width: 991px) {
  289. .vertical-align {
  290. display: flex;
  291. flex-direction: row;
  292. }
  293. .vertical-align {
  294. [class^="col-"],[class*=" col-"] {
  295. &:last-child {
  296. display: flex;
  297. align-items: center;
  298. }
  299. }
  300. }
  301. }
  302. @media (min-width: 992px) {
  303. .zig-zag-row {
  304. table-layout: fixed;
  305. display: table;
  306. width: 100%;
  307. [class^="col-"],[class*=" col-"] {
  308. &.data-blocks-g {
  309. display: table-cell;
  310. vertical-align: middle;
  311. float: none;
  312. }
  313. }
  314. }
  315. }
  316. .checklist {
  317. &.list-inline {
  318. li {
  319. padding: 0 7.5px;
  320. border-right: 1px dotted @default-border-color;
  321. &:first-child {
  322. padding-left: 0;
  323. }
  324. &:last-child {
  325. border-right: 0 none;
  326. }
  327. }
  328. }
  329. li {
  330. position: relative;
  331. list-style: none;
  332. padding: 5px 0 0 20px;
  333. &:before {
  334. position: absolute;
  335. content: "\f00c";
  336. margin-right: 4px;
  337. font-family: "Font Awesome 5 Pro";
  338. color: @themeColor;
  339. font-size: @baseFontSize + 2;
  340. left: 0;
  341. }
  342. }
  343. }
  344. /*
  345. Colorbox Core Style:
  346. The following CSS is consistent between example themes and should not be altered.
  347. */
  348. #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
  349. #cboxWrapper {max-width:none;}
  350. #cboxOverlay{position:fixed; width:100%; height:100%;}
  351. #cboxMiddleLeft, #cboxBottomLeft{clear:left;}
  352. #cboxContent{position:relative;}
  353. #cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
  354. #cboxTitle{margin:0;}
  355. #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
  356. #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
  357. .cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
  358. .cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
  359. #colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}
  360. /*
  361. User Style:
  362. Change the following styles to modify the appearance of Colorbox. They are
  363. ordered & tabbed in a way that represents the nesting of the generated HTML.
  364. */
  365. #cboxOverlay{background:@gray-darker; opacity: 0.9;}
  366. #colorbox{outline:0;}
  367. #cboxTopLeft{width:21px; height:21px;}
  368. #cboxTopRight{width:21px; height:21px;}
  369. #cboxBottomLeft{width:21px; height:21px;}
  370. #cboxBottomRight{width:21px; height:21px;}
  371. #cboxMiddleLeft{width:21px;}
  372. #cboxMiddleRight{width:21px;}
  373. #cboxTopCenter{height:21px;}
  374. #cboxBottomCenter{height:21px;}
  375. #cboxContent{overflow:hidden;}
  376. .cboxIframe{background:#fff;}
  377. #cboxError{padding:50px; border:1px solid #ccc;}
  378. #cboxLoadedContent{margin-bottom:28px;}
  379. #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
  380. #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;}
  381. #cboxLoadingOverlay{background:url(../../images/loading_background.png) no-repeat center center;}
  382. #cboxLoadingGraphic{background:url(../../images/loading.gif) no-repeat center center;}
  383. /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
  384. #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
  385. /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
  386. #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}
  387. #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
  388. #cboxPrevious{position:absolute; bottom:0; left:0; background:url(../../images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
  389. #cboxPrevious:hover{background-position:-75px -25px;}
  390. #cboxNext{position:absolute; bottom:0; left:27px; background:url(../../images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
  391. #cboxNext:hover{background-position:-50px -25px;}
  392. #cboxClose{position:absolute; bottom:0; right:0; background:url(../../images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
  393. #cboxClose:hover{background-position:-25px -25px;}
  394. /* colorbox custom style */
  395. #colorbox:focus , #colorbox:active {
  396. outline:none;
  397. }
  398. #cboxTopLeft, #cboxTopCenter, #cboxTopRight,
  399. #cboxMiddleLeft, #cboxMiddleRight,
  400. #cboxBottomLeft, #cboxBottomCenter, #cboxBottomRight
  401. {
  402. background:none !important;
  403. opacity:0;
  404. }
  405. #cboxContent {
  406. border:12px solid @gray-darker;
  407. background-color:@white;
  408. padding:7px;
  409. }
  410. #cboxCurrent {
  411. left:64px;
  412. margin-bottom:4px;
  413. font-size: 14px;
  414. }
  415. #cboxTitle {
  416. margin-bottom:4px;
  417. font-size: 14px;
  418. color:@gray;
  419. }
  420. #cboxNext , #cboxPrevious , #cboxClose {
  421. background:none;
  422. text-indent:0;
  423. width:26px; height:26px; line-height:22px;
  424. padding:0 4px;
  425. text-align:center;
  426. outline: none!important;
  427. border:2px solid @gray-lighter;
  428. border-radius:16px;
  429. color:#666;
  430. font-size:12px;
  431. margin-left:5px;
  432. margin-bottom:5px;
  433. }
  434. #cboxNext:hover , #cboxPrevious:hover {
  435. color:@gray;
  436. border-color:@default-border-color;
  437. }
  438. #cboxContent {
  439. overflow:visible;
  440. }
  441. #cboxClose {
  442. background-color: @white;
  443. border: 2px solid @white;
  444. border-radius: 32px;
  445. color: @white;
  446. font-size: 21px;
  447. height: 28px;
  448. width: 28px;
  449. padding-bottom: 2px;
  450. margin-left: 0;
  451. right: -14px;
  452. top: -14px;
  453. }
  454. #cboxLoadingOverlay {
  455. background:none !important;
  456. }
  457. #cboxLoadingGraphic {
  458. background:@white none !important;
  459. text-align:center;
  460. > [class*="fa-"] {
  461. display:inline-block;
  462. background-color:@white;
  463. border-radius:8px;
  464. width:32px; height:32px;
  465. position:relative; top:48%;
  466. text-align:center;
  467. vertical-align:middle;
  468. font-size:24px;
  469. color:@brand-warning;
  470. }
  471. }
  472. .@{brand}-bg-shapes-right {
  473. position: absolute;
  474. height: 100%;
  475. width: 100%;
  476. right: 0;
  477. top: 0;
  478. overflow:hidden;
  479. &:before {
  480. content: "";
  481. width: 300px;
  482. height: 150px;
  483. background: rgba(256, 256, 256, 0.1);
  484. position: absolute;
  485. right: -60px;
  486. top: 0;
  487. border-radius: 4px;
  488. transform: skew(25deg, -10deg);
  489. transform-origin: top left;
  490. }
  491. &:after {
  492. content: "";
  493. width: 150px;
  494. height: 600px;
  495. background: rgba(256, 256, 256, 0.15);
  496. position: absolute;
  497. right: 0px;
  498. top: 30px;
  499. border-radius: 6px;
  500. transform: skew(25deg, 10deg);
  501. transform-origin: top left;
  502. }
  503. &.lighter {
  504. &:before {
  505. background: rgba(0, 0, 0, 0.1);
  506. }
  507. &:after {
  508. background: rgba(0, 0, 0, 0.15);
  509. }
  510. }
  511. }
  512. .@{brand}-bg-shapes-left {
  513. position: absolute;
  514. height: 100%;
  515. width: 100%;
  516. right: 0;
  517. top: 0;
  518. overflow:hidden;
  519. &:before {
  520. content: "";
  521. width: 300px;
  522. height: 150px;
  523. background: rgba(256, 256, 256, 0.1);
  524. position: absolute;
  525. left: -90px;
  526. top: 0;
  527. border-radius: 6px;
  528. transform: skew(25deg, -12deg);
  529. transform-origin: top left;
  530. }
  531. &:after {
  532. content: "";
  533. width: 150px;
  534. height: 600px;
  535. background: rgba(256, 256, 256, 0.15);
  536. position: absolute;
  537. left: 0px;
  538. top: 30px;
  539. border-radius: 4px;
  540. transform: skew(-25deg, 10deg);
  541. transform-origin: top left;
  542. }
  543. &.lighter {
  544. &:before {
  545. background: rgba(0, 0, 0, 0.1);
  546. }
  547. &:after {
  548. background: rgba(0, 0, 0, 0.15);
  549. }
  550. }
  551. }
  552. //WHMCS 21
  553. .modal-localisation {
  554. .modal-content {
  555. background-color: @dmb;
  556. }
  557. .modal-body {
  558. background: url(../../img/worldmap.png);
  559. background-size: cover;
  560. padding: 30px;
  561. .close {
  562. font-size: 27px;
  563. outline:0 none !important;
  564. color: @white;
  565. &:hover, &:focus {
  566. color: @white;
  567. }
  568. }
  569. h5, .h5, h4, .h4 {
  570. font-size: @baseFontSize + 3;
  571. color: @white;
  572. }
  573. .fa-times {
  574. color: @white;
  575. }
  576. }
  577. .item-selector {
  578. .item {
  579. display: flex;
  580. align-items: center;
  581. margin: 2px 0;
  582. padding: 0 7.5px;
  583. border: 1px solid rgba(255,255,255,0.30);
  584. border-radius: 0;
  585. color: @white;
  586. text-decoration: none;
  587. height: 35px; min-height: 35px;
  588. .iti-flag {
  589. margin-right: 5px;
  590. }
  591. &.active, &:hover, &:focus {
  592. background-color: @gray-lighter;
  593. color: @baseFontcolor;
  594. }
  595. }
  596. &.currency {
  597. .item {
  598. justify-content: center;
  599. }
  600. }
  601. }
  602. .modal-footer {
  603. display: flex;
  604. align-items: center;
  605. justify-content: center;
  606. border: 0 none;
  607. }
  608. }