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.

_selectionProcessPage.scss 8.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. .selections {
  2. margin-top: 36px;
  3. padding-left: 72px;
  4. @include media-below($bp-xl) {
  5. padding-left: 36px !important;
  6. }
  7. }
  8. .level-header {
  9. padding-left: 81px;
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. @include media-below($bp-xl) {
  14. padding: 0 0.75rem !important;
  15. }
  16. }
  17. .selection-levels {
  18. overflow-x: scroll;
  19. padding-bottom: 100px;
  20. }
  21. .level-header-subheader {
  22. font-family: 'Source Sans Pro';
  23. font-style: normal;
  24. font-weight: 600;
  25. font-size: 24px;
  26. line-height: 36px;
  27. padding-left: 0.3rem;
  28. color: #226CB0;
  29. letter-spacing: 0.02em;
  30. @include media-below($bp-xl) {
  31. font-size: 14px;
  32. }
  33. }
  34. h1,
  35. h3 {
  36. @include media-below($bp-xl) {
  37. font-size: 18px;
  38. }
  39. }
  40. .level-header-spliter {
  41. font-family: 'Source Sans Pro';
  42. font-style: normal;
  43. font-weight: 600;
  44. font-size: 24px;
  45. line-height: 36px;
  46. padding-left: 0.3rem;
  47. color: #272727;
  48. letter-spacing: 0.02em;
  49. @include media-below($bp-xl) {
  50. font-size: 18px;
  51. }
  52. }
  53. .selection-levels-processes {
  54. display: flex;
  55. margin-top: 39px;
  56. position: relative;
  57. }
  58. .selection-levels-processes-process {
  59. padding-left: 81px;
  60. display: flex;
  61. @include media-below($bp-xl) {
  62. padding-left: 0;
  63. }
  64. }
  65. .selection-card {
  66. display: flex;
  67. flex-direction: column;
  68. justify-content: start;
  69. align-items: left;
  70. height: fit-content;
  71. padding: 36px;
  72. background: #F4F4F4;
  73. border: 1px solid #e4e4e4;
  74. border-radius: 18px;
  75. gap: 18px;
  76. margin-right: 36px;
  77. @include media-below($bp-xl) {
  78. margin-right: 20px !important;
  79. padding: 18px !important;
  80. }
  81. }
  82. .sel-item:hover {
  83. scale: 1.05;
  84. border-color: $mainBlue !important;
  85. background-color: $mainBlueLight !important;
  86. }
  87. .bg-danger {
  88. background-color: #272727;
  89. }
  90. .grey {
  91. color: #e4e4e4
  92. }
  93. .selection-item {
  94. display: flex;
  95. flex-direction: row;
  96. justify-content: left;
  97. vertical-align: top;
  98. align-items: left;
  99. width: 400px;
  100. padding: 18px 36px;
  101. background: #FFFFFF;
  102. border: 1px solid #e4e4e4;
  103. border-radius: 18px;
  104. gap: 18px;
  105. margin-right: 36px;
  106. }
  107. .selection-item-date p {
  108. text-align: right;
  109. font-family: "Source Sans Pro";
  110. font-style: normal;
  111. font-weight: 400;
  112. font-size: 16px;
  113. line-height: 15px;
  114. color: #272727;
  115. flex: none;
  116. order: 4;
  117. flex-grow: 0;
  118. }
  119. .selection-card-title h3 {
  120. font-family: "Source Sans Pro";
  121. font-style: normal;
  122. font-weight: 600;
  123. font-size: 32px;
  124. line-height: 32px;
  125. letter-spacing: 0.02em;
  126. color: #272727;
  127. flex: none;
  128. order: 0;
  129. flex-grow: 0;
  130. @include media-below($bp-xl) {
  131. font-size: 18px;
  132. }
  133. }
  134. .selection-item-name,
  135. .selection-item-date {
  136. margin: auto 0 !important;
  137. }
  138. .selection-item-name p {
  139. height: 20px;
  140. font-family: 'Source Sans Pro';
  141. font-style: normal;
  142. font-weight: 600;
  143. font-size: 16px;
  144. line-height: 20px;
  145. text-align: right;
  146. color: #226CB0;
  147. flex: none;
  148. order: 2;
  149. flex-grow: 0;
  150. }
  151. .selection-item-buttons button {
  152. box-sizing: border-box;
  153. display: flex;
  154. flex-direction: row;
  155. justify-content: center;
  156. font-size: 16px;
  157. align-items: center;
  158. padding: 9px;
  159. gap: 10px;
  160. min-width: 76px;
  161. height: 38px;
  162. border: 1px solid #e4e4e4;
  163. border-radius: 9px;
  164. flex: none;
  165. order: 0;
  166. flex-grow: 0;
  167. }
  168. .sel-item {
  169. display: flex;
  170. flex-direction: row;
  171. align-items: center;
  172. padding: 18px 36px;
  173. gap: 18px;
  174. cursor: pointer;
  175. width: 458px;
  176. background: #FFFFFF;
  177. border: 1px solid #E4E4E4;
  178. border-radius: 18px;
  179. transition: 0.3s;
  180. @include media-below($bp-xl) {
  181. justify-content: space-between;
  182. padding: 18px;
  183. width: 303px;
  184. }
  185. }
  186. .sel-item .status {
  187. font-family: 'Source Sans Pro';
  188. font-style: normal;
  189. font-weight: 400;
  190. font-size: 16px;
  191. line-height: 20px;
  192. color: #272727;
  193. flex: none;
  194. order: 0;
  195. flex-grow: 0;
  196. @include media-below($bp-xl) {
  197. font-size: 14px;
  198. order:1;
  199. }
  200. }
  201. .sel-item .date-name{
  202. display: flex;
  203. flex-direction: row;
  204. align-items: flex-start;
  205. gap: 18px;
  206. cursor: pointer;
  207. width: 100%;
  208. order: 1;
  209. @include media-below($bp-xl) {
  210. flex-direction: column;
  211. font-size: 14px;
  212. order: 0;
  213. flex-grow: 0;
  214. gap:4px;
  215. }
  216. }
  217. .sel-item .date-name .date {
  218. font-family: 'Source Sans Pro';
  219. font-style: normal;
  220. font-weight: 400;
  221. font-size: 16px;
  222. color: #272727;
  223. flex: none;
  224. font-size: 14px !important;
  225. order: 0;
  226. }
  227. .full-name {
  228. height: 20px;
  229. font-family: 'Source Sans Pro';
  230. font-style: normal;
  231. font-weight: 600;
  232. font-size: 16px;
  233. text-align: right;
  234. color: #226CB0;
  235. flex: 3 0 auto;
  236. order: 1;
  237. @include media-below($bp-xl) {
  238. text-align: left !important;
  239. font-size: 14px !important;
  240. }
  241. }
  242. .full-name p,.sel-item .date-name .date p{
  243. @include media-below($bp-xl) {
  244. font-size: 14px !important;
  245. }
  246. }
  247. .sel-item .status button {
  248. box-sizing: border-box;
  249. display: flex;
  250. flex-direction: row;
  251. justify-content: center;
  252. font-size: 16px;
  253. align-items: center;
  254. padding: 9px;
  255. gap: 10px;
  256. min-width: 76px;
  257. height: 38px;
  258. border: 1px solid #e4e4e4;
  259. background: white;
  260. border-radius: 9px;
  261. flex: none;
  262. order: 0;
  263. flex-grow: 0;
  264. @include media-below($bp-xl) {
  265. font-size: 14px !important;
  266. }
  267. }
  268. .active-process {
  269. scale: 1.05;
  270. border-color: $mainBlue !important;
  271. background-color: $mainBlueLight !important;
  272. }
  273. .active-process-card {
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: start;
  277. align-items: flex-start;
  278. padding: 18px;
  279. background: #ffffff;
  280. border: 1px solid #e4e4e4;
  281. border-radius: 18px;
  282. gap: 18px;
  283. margin-right: 36px;
  284. @include media-below($bp-xl) {
  285. margin-right: 20px !important;
  286. padding: 36px !important;
  287. }
  288. }
  289. .active-process-tip {
  290. display: flex;
  291. flex-direction: column;
  292. justify-content: start;
  293. align-items: flex-start;
  294. padding: 91.5px;
  295. width: 800px;
  296. background: #ffffff;
  297. gap: 18px;
  298. margin-right: 36px;
  299. @include media-below($bp-xl) {
  300. margin-right: 20px !important;
  301. padding: 36px !important;
  302. width: 100%;
  303. }
  304. }
  305. .active-process-tip h3 {
  306. font-family: 'Source Sans Pro';
  307. font-style: normal;
  308. font-weight: 600;
  309. font-size: 16px;
  310. color: #272727;
  311. ;
  312. }
  313. .active-process-tip p {
  314. font-family: 'Source Sans Pro';
  315. font-style: normal;
  316. font-weight: 400;
  317. font-size: 16px;
  318. color: #272727;
  319. }
  320. .active-process-card-header {
  321. display: flex;
  322. flex-direction: row;
  323. justify-content: space-between;
  324. width: 100%;
  325. align-items: center;
  326. padding: 0px;
  327. gap: 18px;
  328. flex-wrap: wrap;
  329. }
  330. .active-process-card-body {
  331. display: flex;
  332. flex-direction: column;
  333. justify-content: center;
  334. width: 100%;
  335. align-items: center;
  336. padding: 34px;
  337. gap: 18px;
  338. @include media-below($bp-xl) {
  339. margin-right: 20px !important;
  340. padding: 36px !important;
  341. }
  342. }
  343. .active-process-card-date p {
  344. font-family: 'Source Sans Pro';
  345. font-style: normal;
  346. font-weight: 400;
  347. font-size: 16px;
  348. line-height: 20px;
  349. color: #272727;
  350. flex: none;
  351. order: 0;
  352. flex-grow: 0;
  353. z-index: 0;
  354. }
  355. .active-process-card-number p {
  356. font-family: 'Source Sans Pro';
  357. font-style: normal;
  358. font-weight: 600;
  359. font-size: 16px;
  360. line-height: 20px;
  361. text-align: left;
  362. background: conic-gradient(from 73.66deg at 50% 50%, #226CB0 0deg, #BA6FB9 106.88deg, #5E9FDB 228.75deg, #226CB0 360deg);
  363. -webkit-background-clip: text;
  364. -webkit-text-fill-color: transparent;
  365. background-clip: text;
  366. text-fill-color: transparent;
  367. flex: none;
  368. order: 6;
  369. flex-grow: 0;
  370. z-index: 6;
  371. }
  372. .active-process-card-buttons {
  373. overflow: hidden;
  374. display: flex;
  375. flex-direction: row;
  376. align-items: flex-start;
  377. justify-content: center;
  378. padding: 0px;
  379. gap: 18px;
  380. flex: none;
  381. order: 4;
  382. flex-grow: 0;
  383. @include media-below($bp-xl) {
  384. gap: 9px !important;
  385. }
  386. }
  387. .active-process-card-buttons button {
  388. box-sizing: border-box;
  389. display: flex;
  390. flex-direction: row;
  391. justify-content: center;
  392. align-items: center;
  393. padding: 9px;
  394. gap: 10px;
  395. height: 38px;
  396. background: transparent;
  397. border: 1px solid #e4e4e4;
  398. border-radius: 9px;
  399. flex: none;
  400. order: 0;
  401. flex-grow: 0;
  402. }
  403. .active-process-card-link {
  404. font-family: 'Source Sans Pro';
  405. font-style: normal;
  406. font-weight: 400;
  407. font-size: 12px;
  408. text-decoration-line: underline;
  409. color: #226CB0;
  410. flex: none;
  411. order: 4;
  412. flex-grow: 0;
  413. z-index: 4;
  414. }
  415. .active-process-card-logo img {
  416. flex: none;
  417. order: 0;
  418. flex-grow: 0;
  419. }
  420. .active-process-card-logo {
  421. margin-left: auto;
  422. flex: none;
  423. order: 1;
  424. flex-grow: 0;
  425. }