launch-threesixty-dashboard.component.scss 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. .dashboard.dse{
  2. slideshow{
  3. height: calc(100% - 200px);
  4. }
  5. }
  6. .dashboard{
  7. width: 100%;
  8. height:calc(100% - 85px);
  9. slideshow {
  10. width: 100%;
  11. height: calc(100% - 243px);
  12. float: left;
  13. }
  14. .bottom_content{
  15. width:100%;
  16. height:200px;
  17. float: left;
  18. // background-color: #ccc;
  19. padding:0 80px;
  20. .row{
  21. // width: 1000px;
  22. // margin: auto;
  23. height:100%;
  24. .col{
  25. width: 300px;
  26. height:170px;
  27. margin:0 20px;
  28. border-radius:10px;
  29. box-shadow: 0px 0px 9px 3px #e2dede;
  30. background-color: #fff;
  31. padding: 20px;
  32. .title{
  33. font-size: 14px;
  34. color:#333;
  35. float: left;
  36. width:100%;
  37. }
  38. .box_left{
  39. width:calc(100% - 57px);
  40. margin-top: 15px;
  41. float: left;
  42. position: relative;
  43. svg {
  44. width: 100px;
  45. float: left;
  46. top: 0;
  47. height: 100px;
  48. }
  49. // .timer {
  50. // position: absolute;
  51. // top: 0;
  52. // left: 0;
  53. // bottom: 0;
  54. // left: 5px;
  55. // width: 70px;
  56. // height: 55px;
  57. // margin: auto;
  58. // font-size: 36px;
  59. // color: #28a8e0;
  60. // text-align: center;
  61. // }
  62. .load_content{
  63. float: left;
  64. margin-top: 20px;
  65. margin-left: 10px;
  66. h6{
  67. font-size: 14px;
  68. color: #28a8e0;
  69. }
  70. p{
  71. font-size: 12px;
  72. color: #28a8e0;
  73. }
  74. }
  75. }
  76. .box_right{
  77. background-color: #28a8e0;
  78. width: 120px;
  79. height: 100%;
  80. float: right;
  81. position: absolute;
  82. right:0;
  83. top:0;
  84. border-bottom-right-radius: 10px;
  85. border-top-right-radius: 10px;
  86. padding: 10px;
  87. text-align: center;
  88. img{
  89. width: 30px;
  90. cursor: pointer;
  91. }
  92. p{
  93. color:#fff;
  94. font-size: 24px;
  95. margin: 0;
  96. padding: 10px 0;
  97. }
  98. }
  99. }
  100. .learning{
  101. .box_left{
  102. margin: 0;
  103. position: relative;
  104. height: 42%;
  105. .load_content{
  106. margin:auto;
  107. position: absolute;
  108. width: 200px;
  109. height: 65px;
  110. left:0;
  111. right:0;
  112. top:0;
  113. bottom: 0;
  114. text-align: center;
  115. h1{
  116. font-size: 50px;
  117. span{
  118. font-size: 30px;
  119. }
  120. }
  121. }
  122. }
  123. .box_right{
  124. img{
  125. width: 70px;
  126. margin-top: 40px;
  127. }
  128. }
  129. }
  130. }
  131. .loader {
  132. border: 5px solid #ccc;
  133. border-radius: 50%;
  134. border-top: 5px solid #28a8e0;
  135. width: 80px;
  136. height: 80px;
  137. // -webkit-animation: spin 2s linear infinite; /* Safari */
  138. // animation: spin 2s linear infinite;
  139. float: left;
  140. }
  141. /* Safari */
  142. // @-webkit-keyframes spin {
  143. // 0% { -webkit-transform: rotate(0deg); }
  144. // 100% { -webkit-transform: rotate(360deg); }
  145. // }
  146. // @keyframes spin {
  147. // 0% { transform: rotate(0deg); }
  148. // 100% { transform: rotate(360deg); }
  149. // }
  150. .path:after {
  151. width: 92%;
  152. height: 2px;
  153. background-color: transparent;
  154. content: "";
  155. left: 5%;
  156. z-index: -1;
  157. position: absolute;
  158. top: 8px;
  159. box-shadow: 0 -4px 5px 1px #d0cece;
  160. }
  161. .pointer:before {
  162. width: 8px;
  163. height: 8px;
  164. content: "";
  165. // background-color: #999;
  166. position: absolute;
  167. right: -5px;
  168. border-top-left-radius: 50%;
  169. // border-left: 3px solid #dad7d7;
  170. border-top-right-radius: 50%;
  171. }
  172. .path{
  173. width: 242px;
  174. margin: auto;
  175. height: 75px;
  176. /* position: relative; */
  177. position: absolute;
  178. z-index: 99;
  179. left: 0;
  180. right: 0;
  181. bottom: 0;
  182. top: 0;
  183. .type_name{
  184. width: 100%;
  185. float: left;
  186. p{
  187. float: left;
  188. width: 24.5%;
  189. text-align: center;
  190. font-size: 12px;
  191. font-weight: bold;
  192. font-style: italic;
  193. margin-top: 10px;
  194. }
  195. }
  196. }
  197. .pointer.grey{
  198. background-color: #dad7d7;
  199. }
  200. .pointer.grey:before{
  201. background-color: #999;
  202. border-left: 3px solid #dad7d7;
  203. }
  204. .pointer.grey:after{
  205. border-top: 10px solid #dad7d7;
  206. }
  207. .pointer.orange{
  208. background-color: orange;
  209. }
  210. .pointer.orange:before{
  211. background-color: #cc8504;
  212. border-left: 3px solid orange;
  213. }
  214. .pointer.orange:after{
  215. border-top: 10px solid orange;
  216. }
  217. .pointer.green{
  218. background-color: green;
  219. }
  220. .pointer.green:before{
  221. background-color: #036303;
  222. border-left: 3px solid green;
  223. }
  224. .pointer.green:after{
  225. border-top: 10px solid green;
  226. }
  227. .pointer.red{
  228. background-color: red;
  229. }
  230. .pointer.red:before{
  231. background-color: #a90606;
  232. border-left: 3px solid red;
  233. }
  234. .pointer.red:after{
  235. border-top: 10px solid red;
  236. }
  237. .pointer {
  238. width: 35px;
  239. height: 80px;
  240. position: relative;
  241. // background: red;
  242. border-top-left-radius: 4px;
  243. float: left;
  244. margin: 0 5%;
  245. // .poly{
  246. // clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  247. // }
  248. .poly {
  249. width: 50px;
  250. height: 50px;
  251. background: transparent;
  252. float: left;
  253. position: absolute;
  254. bottom: -5px;
  255. z-index: 99;
  256. left: -8px;
  257. svg{
  258. float: left;
  259. margin: 0;
  260. width: 100%;
  261. height: 100%;
  262. }
  263. .types{
  264. position: absolute;
  265. top: 0;
  266. bottom: 0;
  267. margin: auto;
  268. width: 40px;
  269. height: 50px;
  270. left: 0;
  271. right: 0;
  272. text-align: center;
  273. font-size: 30px;
  274. }
  275. }
  276. // .poly:before {
  277. // content: "";
  278. // position: absolute;
  279. // top: -15px;
  280. // left: 0;
  281. // width: 0;
  282. // height: 0;
  283. // border-left: 30px solid transparent;
  284. // border-right: 30px solid transparent;
  285. // border-bottom: 15px solid blue;
  286. // }
  287. // .poly:after {
  288. // content: "";
  289. // position: absolute;
  290. // bottom: -15px;
  291. // left: 0;
  292. // width: 0;
  293. // height: 0;
  294. // border-left: 30px solid transparent;
  295. // border-right: 30px solid transparent;
  296. // border-top: 15px solid blue;
  297. // }
  298. }
  299. .pointer:after {
  300. content: "";
  301. position: absolute;
  302. left: 0;
  303. bottom: 0;
  304. width: 0;
  305. height: 0;
  306. border-left: 17px solid white;
  307. border-top: 10px solid red;
  308. border-right: 18px solid white;
  309. }
  310. // .pointer:before {
  311. // content: "";
  312. // position: absolute;
  313. // right: -20px;
  314. // bottom: 0;
  315. // width: 0;
  316. // height: 0;
  317. // border-left: 20px solid transparent;
  318. // border-top: 20px solid transparent;
  319. // border-bottom: 20px solid red;
  320. // }
  321. }
  322. }
  323. @media screen and (max-width: 768px) {
  324. .dashboard{
  325. width: 100%;
  326. height: auto;
  327. margin-top: 53px;
  328. overflow: scroll;
  329. slideshow{
  330. height: 300px;
  331. }
  332. }
  333. }
  334. @media screen and (max-width: 1024px) {
  335. .dashboard.dse{
  336. slideshow{
  337. height: calc(100% - 170px);
  338. }
  339. .bottom_content {
  340. background-color: red;
  341. .row {
  342. .learning {
  343. .box_right {
  344. img {
  345. width: 60px;
  346. }
  347. }
  348. }
  349. }
  350. }
  351. }
  352. .dashboard{
  353. height: calc(100% - 60px);
  354. slideshow{
  355. height: calc(100% - 420px);
  356. }
  357. .bottom_content{
  358. height: 330px;
  359. .main_dropdown{
  360. bottom: 374px;
  361. }
  362. .row{
  363. .col{
  364. margin: 5px 5px;
  365. width: 332px;
  366. height: 170px !important;
  367. }
  368. }
  369. }
  370. }
  371. }
  372. @media screen and (max-width: 768px) {
  373. .dashboard {
  374. height: 100%;
  375. float: left;
  376. padding-top: 53px;
  377. overflow-y: scroll;
  378. slideshow{
  379. height: 200px;
  380. }
  381. }
  382. }
  383. .carousel-item{
  384. background-size: cover;
  385. width: 100%;
  386. height: 100%;
  387. color: transparent;
  388. }
  389. .w-100{
  390. height:500px;
  391. width: auto !important;
  392. display: block;
  393. margin: 0px auto;
  394. }
  395. button.btn.btn-primary.btn-lg {
  396. background-color: #28a8e0 !important;
  397. }
  398. .btn-primary{
  399. background-color: #28a8e0!important;
  400. font-size: 12px;
  401. height: 42px;
  402. margin: 6px auto !important;
  403. border-radius: 16px !important;
  404. outline: none;
  405. border: #28a8e0 !important;
  406. -webkit-box-shadow: none;
  407. box-shadow: none;
  408. padding: 0px 33px;
  409. }
  410. .btn:focus {
  411. -webkit-box-shadow: none;
  412. box-shadow: none;
  413. }
  414. .btn-primary:not(:disabled):not(.disabled):active:focus{
  415. box-shadow: none !important;
  416. outline: none !important;
  417. }
  418. /*slider*/
  419. #myCarousel{
  420. width: 100%;
  421. float: left;
  422. }
  423. .carousel {
  424. position: absolute;
  425. }
  426. .carousel-inner {
  427. position: absolute !important;
  428. }
  429. .carousel,.carousel-inner {
  430. height: 100% !important;
  431. width: 100%;
  432. }
  433. .carousel-inner>.item>img, .carousel-inner>.item>a>img {
  434. display: block;
  435. height: auto;
  436. max-width: 100%;
  437. line-height: 1;
  438. // width: 100%; // Add this
  439. margin: 0px auto;
  440. }
  441. .hero {
  442. position: absolute;
  443. // top: 78%;
  444. left: 47%;
  445. z-index: 0;
  446. bottom: 100px;
  447. h4{
  448. font-size: 14px;
  449. text-align: center;
  450. }
  451. }
  452. .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
  453. left: 50%;
  454. margin-left: -10px;
  455. top: 88% !important;
  456. background-color: #333;
  457. width: 20%;
  458. padding: 5px 0px;
  459. height: auto !important;
  460. }
  461. .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next{
  462. top: 88% !important;
  463. background-color: #333;
  464. width: 20%;
  465. padding: 5px 0px;
  466. height: auto !important;
  467. }
  468. .carousel-control-next-icon {
  469. width: 4%;
  470. height: 12%;
  471. background-size: 21px;
  472. float: right;
  473. }
  474. .carousel-control-prev-icon{
  475. width: 4%;
  476. height: 12%;
  477. background-size: 22px;
  478. }
  479. .carousel-control-next-icon, .carousel-control-prev-icon {
  480. background-color: #28a8e0;
  481. }
  482. span.carousel-control-next-icon{
  483. right: -32px;
  484. }
  485. span.carousel-control-next-icon,span.carousel-control-prev-icon {
  486. position: absolute;
  487. // top: 505px;
  488. bottom: 100px;
  489. display: -ms-flexbox;
  490. display: flex;
  491. -ms-flex-align: center;
  492. align-items: center;
  493. -ms-flex-pack: center;
  494. justify-content: center;
  495. width: 4%;
  496. height:42px;
  497. margin-right:30px;
  498. color: #fff;
  499. text-align: center;
  500. }
  501. .left_card {
  502. position: inherit;
  503. }
  504. h-100{
  505. width: 100%!important;
  506. height:100%!important;
  507. }
  508. .title_name{
  509. background-color:#000;
  510. color:#fff;
  511. padding:10px;
  512. }