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.

_candidatePage.scss 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. .main-candidate-container {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .top-candidate-container {
  6. display: flex;
  7. width: 100%;
  8. justify-content: space-between;
  9. }
  10. .candidate-header {
  11. height: 36px;
  12. font-family: Source Sans Pro;
  13. font-size: 36px;
  14. font-weight: 600;
  15. line-height: 36px;
  16. letter-spacing: 0.02em;
  17. text-align: left;
  18. color: #272727;
  19. }
  20. .separation-line {
  21. margin-left: 5px;
  22. margin-right: 5px;
  23. font-size: 20px;
  24. align-self: flex-end;
  25. }
  26. .candidate-lower-header {
  27. font-family: Source Sans Pro;
  28. font-size: 24px;
  29. font-weight: 600;
  30. line-height: 32px;
  31. letter-spacing: 0.02em;
  32. text-align: left;
  33. color: #226cb0;
  34. align-self: flex-end;
  35. }
  36. .candidate-option-container {
  37. display: flex;
  38. height: 38px;
  39. }
  40. .content-candidate-container {
  41. display: flex;
  42. justify-content: space-between;
  43. margin-top: 14px;
  44. }
  45. .technologies-candidate-container {
  46. display: flex;
  47. margin-top: 18px;
  48. }
  49. .technology-candidate-card {
  50. display: flex;
  51. flex-direction: row;
  52. justify-content: center;
  53. align-items: center;
  54. padding: 9px;
  55. gap: 10px;
  56. background: #ffffff;
  57. border: 1px solid #e4e4e4;
  58. border-radius: 9px;
  59. }
  60. .technology-candidate-card:not(:last-child) {
  61. margin-right: 18px;
  62. }
  63. .comment-container {
  64. width: 612px;
  65. height: 404px;
  66. background: #ffffff;
  67. border: 1px solid #e4e4e4;
  68. border-radius: 12px;
  69. margin-top: 16px;
  70. }
  71. .candidate-informations-container {
  72. display: flex;
  73. flex-direction: column;
  74. }
  75. .candidate-informations-sub-container {
  76. margin-top: 36px;
  77. }
  78. .informations-candidate-header {
  79. font-family: "Source Sans Pro";
  80. font-style: normal;
  81. font-weight: 600;
  82. font-size: 16px;
  83. line-height: 20px;
  84. color: #272727;
  85. }
  86. .candidate-property-container {
  87. display: flex;
  88. flex-direction: column;
  89. }
  90. .candidate-property {
  91. margin-top: 18px;
  92. font-family: Source Sans Pro;
  93. font-size: 16px;
  94. font-weight: 400;
  95. line-height: 20px;
  96. letter-spacing: 0em;
  97. }
  98. .candidate-property-value {
  99. @extend .candidate-property;
  100. color: #1e92d0;
  101. }
  102. .candidate-informations-sub-container {
  103. display: flex;
  104. }
  105. .comment-container {
  106. display: flex;
  107. flex-direction: column;
  108. padding-left: 36px;
  109. padding-right: 36px;
  110. padding-top: 36px;
  111. }
  112. .comment-sub-container {
  113. display: flex;
  114. align-items: center;
  115. }
  116. .comment-sub-container:not(:first-child) {
  117. margin-top: 36px;
  118. }
  119. .comment-sender {
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. width: 40px;
  124. height: 40px;
  125. border-radius: 50%;
  126. box-sizing: border-box;
  127. border: 1px solid;
  128. border-color: #226cb0;
  129. }
  130. .comment-sender p {
  131. color: #226cb0;
  132. }
  133. .comment-message {
  134. display: flex;
  135. flex-direction: column;
  136. justify-content: center;
  137. align-items: flex-end;
  138. padding: 9px;
  139. gap: 9px;
  140. height: 62px;
  141. background: #f4f4f4;
  142. border-radius: 12px;
  143. margin-left: 18px;
  144. }
  145. .comment-message-content {
  146. align-self: flex-start;
  147. height: 20px;
  148. font-family: "Source Sans Pro";
  149. font-style: normal;
  150. font-size: 16px;
  151. line-height: 20px;
  152. }
  153. .comment-message-date {
  154. align-self: flex-end;
  155. height: 15px;
  156. font-family: "Source Sans Pro";
  157. font-style: normal;
  158. font-weight: 400;
  159. font-size: 12px;
  160. line-height: 15px;
  161. color: #272727;
  162. }
  163. .comment-separation-line {
  164. width: 100%;
  165. height: 0px;
  166. border: 1px solid #e4e4e4;
  167. background: #e4e4e4;
  168. }
  169. .send-comment-container {
  170. margin-top: 18px;
  171. }
  172. .send-comment-container p {
  173. font-family: "Source Sans Pro";
  174. font-weight: 400;
  175. font-size: 16px;
  176. line-height: 20px;
  177. color: #9d9d9d;
  178. }
  179. .send-comment-sub-container {
  180. display: flex;
  181. margin-top: 9px;
  182. height: 56px;
  183. margin-bottom: 36px;
  184. }
  185. .comment-send-btn {
  186. display: flex;
  187. flex-direction: row;
  188. justify-content: center;
  189. align-items: center;
  190. padding: 18px 36px;
  191. gap: 10px;
  192. background: #ffffff;
  193. border: 1px solid #226cb0;
  194. border-radius: 9px;
  195. border: 1px solid #226cb0;
  196. width: 156px;
  197. margin-left: 18px;
  198. }
  199. .comment-send-btn:hover {
  200. cursor: pointer;
  201. }
  202. .comment-send-btn p {
  203. width: 62px;
  204. height: 15px;
  205. font-family: "Source Sans Pro";
  206. font-style: normal;
  207. font-weight: 600;
  208. font-size: 12px;
  209. line-height: 15px;
  210. letter-spacing: 0.04em;
  211. text-transform: uppercase;
  212. color: #226cb0;
  213. flex: none;
  214. order: 1;
  215. flex-grow: 0;
  216. }
  217. .comment-send-btn img {
  218. width: 12px;
  219. height: 12px;
  220. }
  221. .candidate-users {
  222. background-color: #f4f4f4;
  223. }
  224. .candidate-user {
  225. color: #226cb0;
  226. }
  227. .applicant-ads-container {
  228. margin-top: 36px;
  229. }
  230. .applicant-ads-container > p {
  231. font-family: "Source Sans Pro";
  232. font-weight: 600;
  233. font-size: 24px;
  234. line-height: 32px;
  235. letter-spacing: 0.02em;
  236. color: #272727;
  237. }
  238. .applicant-ads-sub-container {
  239. margin-top: 18px;
  240. }
  241. .applicant-add {
  242. display: flex;
  243. flex-direction: column;
  244. align-items: center;
  245. padding: 36px;
  246. gap: 18px;
  247. background: #ffffff;
  248. border: 1px solid #e4e4e4;
  249. border-radius: 12px;
  250. width: 247px;
  251. height: 238px;
  252. }
  253. .applicant-add-date {
  254. font-family: Source Sans Pro;
  255. font-size: 12px;
  256. font-weight: 400;
  257. line-height: 15px;
  258. letter-spacing: 0em;
  259. }
  260. .applicant-add-title {
  261. font-family: "Source Sans Pro";
  262. font-weight: 600;
  263. font-size: 16px;
  264. line-height: 20px;
  265. color: #226cb0;
  266. }
  267. .applicant-add-site {
  268. display: flex;
  269. flex-direction: column;
  270. justify-content: center;
  271. align-items: center;
  272. background: #ffffff;
  273. padding: 5px;
  274. border: 1px solid #e4e4e4;
  275. border-radius: 8px;
  276. font-size: 16px;
  277. font-family: "Source Sans Pro";
  278. font-weight: 400;
  279. color: #272727;
  280. }
  281. .applicant-ads-buttons-container {
  282. display: flex;
  283. align-self: flex-end;
  284. align-items: center;
  285. margin-bottom: 54px;
  286. margin-top: 18px;
  287. }
  288. .applicant-cv-button {
  289. display: flex;
  290. flex-direction: row;
  291. justify-content: center;
  292. align-items: center;
  293. padding: 18px 72px;
  294. gap: 10px;
  295. background: #226cb0;
  296. border-radius: 9px;
  297. width: 212px;
  298. height: 51px;
  299. font-family: "Source Sans Pro";
  300. font-weight: 600;
  301. font-size: 12px;
  302. line-height: 15px;
  303. letter-spacing: 0.04em;
  304. text-transform: uppercase;
  305. color: #ffffff;
  306. }
  307. .applicant-ads-back-button {
  308. margin-right: 36px;
  309. font-family: "Source Sans Pro";
  310. font-weight: 400;
  311. font-size: 16px;
  312. line-height: 20px;
  313. text-decoration-line: underline;
  314. color: #226cb0;
  315. }
  316. .tagStyle {
  317. color: #226cb0;
  318. font-family: Source Sans Pro;
  319. font-size: 16px;
  320. font-weight: 600;
  321. line-height: 20px;
  322. letter-spacing: 0em;
  323. }
  324. .comment-input {
  325. @extend .tagStyle;
  326. width: 368px;
  327. }
  328. .comment-input ::placeholder {
  329. width: 139px;
  330. height: 20px;
  331. font-family: "Source Sans Pro";
  332. font-style: italic;
  333. font-weight: 400;
  334. font-size: 16px;
  335. line-height: 20px;
  336. color: #9d9d9d;
  337. flex: none;
  338. order: 0;
  339. flex-grow: 0;
  340. }
  341. .comment-input-list{
  342. @extend .tagStyle;
  343. }
  344. @media only screen and (max-width: 930px) {
  345. .comment-container {
  346. width:500px;
  347. }
  348. }
  349. @media only screen and (max-width: 820px) {
  350. .comment-container {
  351. width:400px;
  352. };
  353. .comment-send-btn{
  354. width: 130;
  355. padding: 12px 28px;
  356. };
  357. .send-comment-sub-container{
  358. height: 45px;
  359. margin-bottom: 20px
  360. };
  361. .comment-input ::placeholder{
  362. font-size: 14px;
  363. line-height: 18px;
  364. padding-top:2px;
  365. }
  366. }
  367. @media only screen and (max-width: 700px) {
  368. .comment-container {
  369. width:380px;
  370. }
  371. .comment-send-btn{
  372. width: 110;
  373. padding: 10px 20px;
  374. };
  375. }
  376. @media only screen and (max-width:680px) {
  377. .content-candidate-container{
  378. flex-direction: column;
  379. }
  380. .comment-container {
  381. margin-top: 30px;
  382. }
  383. }
  384. @media only screen and (max-width:540px) {
  385. .candidate-header{
  386. height: 30px;
  387. font-family: Source Sans Pro;
  388. font-size: 30px;
  389. line-height: 30px;
  390. }
  391. .candidate-lower-header{
  392. font-size: 18px;
  393. line-height: 26px;
  394. }
  395. .applicant-cv-button {
  396. padding: 10px 52px;
  397. gap: 7px;
  398. border-radius: 7px;
  399. width: 180px;
  400. height: 40px;
  401. font-size: 10px;
  402. line-height: 12px;
  403. text-align: center;
  404. }
  405. }
  406. @media only screen and (max-width:480px) {
  407. .comment-container {
  408. width:297px;
  409. }
  410. .comment-send-btn{
  411. padding: 5px 5px;
  412. };
  413. .comment-container{
  414. padding: 20px;
  415. }
  416. .candidate-header{
  417. height: 20x;
  418. font-size: 20px;
  419. line-height: 20px;
  420. }
  421. .candidate-lower-header{
  422. font-size: 17px;
  423. line-height:17px;
  424. }
  425. }