Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_selectionProcessPage.scss 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. .selections {
  2. margin-top: 36px;
  3. padding-left: 72px;
  4. }
  5. .level-header {
  6. padding-left: 81px;
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. }
  11. .selection-levels {
  12. overflow-x: scroll;
  13. padding-bottom: 100px;
  14. }
  15. .level-header-subheader {
  16. font-family: 'Source Sans Pro';
  17. font-style: normal;
  18. font-weight: 600;
  19. font-size: 24px;
  20. line-height: 36px;
  21. padding-left: 0.3rem;
  22. color: #226CB0;
  23. letter-spacing: 0.02em;
  24. }
  25. .level-header-spliter {
  26. font-family: 'Source Sans Pro';
  27. font-style: normal;
  28. font-weight: 600;
  29. font-size: 24px;
  30. line-height: 36px;
  31. padding-left: 0.3rem;
  32. color: #272727;
  33. letter-spacing: 0.02em;
  34. }
  35. .selection-levels-processes {
  36. display: flex;
  37. margin-top: 39px;
  38. position: relative;
  39. }
  40. .selection-levels-processes-process {
  41. padding-left: 81px;
  42. display: flex;
  43. }
  44. .selection-card {
  45. display: flex;
  46. flex-direction: column;
  47. justify-content: start;
  48. align-items: left;
  49. height: fit-content;
  50. padding: 36px;
  51. background: #F4F4F4;
  52. border: 1px solid #e4e4e4;
  53. border-radius: 18px;
  54. gap: 18px;
  55. margin-right: 36px;
  56. }
  57. .bg-danger {
  58. background-color: #272727;
  59. }
  60. .grey {
  61. color: #e4e4e4
  62. }
  63. .selection-item {
  64. display: flex;
  65. flex-direction: row;
  66. justify-content: left;
  67. vertical-align: top;
  68. align-items: left;
  69. width: 400px;
  70. padding: 18px 36px;
  71. background: #FFFFFF;
  72. border: 1px solid #e4e4e4;
  73. border-radius: 18px;
  74. gap: 18px;
  75. margin-right: 36px;
  76. }
  77. .selection-item-date p {
  78. text-align: right;
  79. font-family: "Source Sans Pro";
  80. font-style: normal;
  81. font-weight: 400;
  82. font-size: 16px;
  83. line-height: 15px;
  84. color: #272727;
  85. flex: none;
  86. order: 4;
  87. flex-grow: 0;
  88. }
  89. .selection-card-title h3 {
  90. font-family: "Source Sans Pro";
  91. font-style: normal;
  92. font-weight: 600;
  93. font-size: 32px;
  94. line-height: 32px;
  95. letter-spacing: 0.02em;
  96. color: #272727;
  97. flex: none;
  98. order: 0;
  99. flex-grow: 0;
  100. }
  101. .selection-item-name,
  102. .selection-item-date {
  103. margin: auto 0 !important;
  104. }
  105. .selection-item-name p {
  106. height: 20px;
  107. font-family: 'Source Sans Pro';
  108. font-style: normal;
  109. font-weight: 600;
  110. font-size: 16px;
  111. line-height: 20px;
  112. text-align: right;
  113. color: #226CB0;
  114. flex: none;
  115. order: 2;
  116. flex-grow: 0;
  117. }
  118. .selection-item-buttons button {
  119. box-sizing: border-box;
  120. display: flex;
  121. flex-direction: row;
  122. justify-content: center;
  123. font-size: 16px;
  124. align-items: center;
  125. padding: 9px;
  126. gap: 10px;
  127. min-width: 76px;
  128. height: 38px;
  129. border: 1px solid #e4e4e4;
  130. border-radius: 9px;
  131. flex: none;
  132. order: 0;
  133. flex-grow: 0;
  134. }
  135. .sel-item {
  136. display: flex;
  137. flex-direction: row;
  138. align-items: center;
  139. padding: 18px 36px;
  140. gap: 18px;
  141. width: 458px;
  142. background: #FFFFFF;
  143. border: 1px solid #E4E4E4;
  144. border-radius: 18px;
  145. }
  146. .sel-item .status {
  147. font-family: 'Source Sans Pro';
  148. font-style: normal;
  149. font-weight: 400;
  150. font-size: 16px;
  151. line-height: 20px;
  152. color: #272727;
  153. flex: none;
  154. order: 0;
  155. flex-grow: 0;
  156. }
  157. .sel-item .date {
  158. font-family: 'Source Sans Pro';
  159. font-style: normal;
  160. font-weight: 400;
  161. font-size: 16px;
  162. line-height: 20px;
  163. color: #272727;
  164. }
  165. .sel-item .full-name {
  166. height: 20px;
  167. font-family: 'Source Sans Pro';
  168. font-style: normal;
  169. font-weight: 600;
  170. font-size: 16px;
  171. text-align: right;
  172. color: #226CB0;
  173. flex: 3 0 auto;
  174. order: 1;
  175. }
  176. .sel-item .status button {
  177. box-sizing: border-box;
  178. display: flex;
  179. flex-direction: row;
  180. justify-content: center;
  181. font-size: 16px;
  182. align-items: center;
  183. padding: 9px;
  184. gap: 10px;
  185. min-width: 76px;
  186. height: 38px;
  187. border: 1px solid #e4e4e4;
  188. background: white;
  189. border-radius: 9px;
  190. flex: none;
  191. order: 0;
  192. flex-grow: 0;
  193. }