您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_candidatePage.scss 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637
  1. .main-candidate-container {
  2. display: flex;
  3. flex-direction: column;
  4. margin-top: 36px;
  5. padding-right: 72px;
  6. }
  7. .top-candidate-container {
  8. display: flex;
  9. justify-content: space-between;
  10. margin-left: 144px;
  11. }
  12. .candidate-header {
  13. height: 36px;
  14. font-family: Source Sans Pro;
  15. font-size: 36px;
  16. font-weight: 600;
  17. line-height: 36px;
  18. letter-spacing: 0.02em;
  19. text-align: left;
  20. color: #272727;
  21. }
  22. .separation-line {
  23. margin-left: 5px;
  24. margin-right: 5px;
  25. font-size: 20px;
  26. align-self: flex-end;
  27. }
  28. .candidate-lower-header {
  29. font-family: Source Sans Pro;
  30. font-size: 24px;
  31. font-weight: 600;
  32. line-height: 32px;
  33. letter-spacing: 0.02em;
  34. text-align: left;
  35. color: #226cb0;
  36. align-self: flex-end;
  37. }
  38. .candidate-option-container {
  39. display: flex;
  40. height: 38px;
  41. }
  42. .content-candidate-container {
  43. display: flex;
  44. justify-content: space-between;
  45. margin-top: 14px;
  46. margin-left: 144px;
  47. }
  48. .technologies-candidate-container {
  49. display: flex;
  50. margin-top: 18px;
  51. }
  52. .technology-candidate-card {
  53. display: flex;
  54. flex-direction: row;
  55. justify-content: center;
  56. align-items: center;
  57. padding: 9px;
  58. gap: 10px;
  59. background: #ffffff;
  60. border: 1px solid #e4e4e4;
  61. border-radius: 9px;
  62. }
  63. .technology-candidate-card:not(:last-child) {
  64. margin-right: 18px;
  65. }
  66. .comment-container {
  67. width: 612px;
  68. height: 404px;
  69. background: #ffffff;
  70. border: 1px solid #e4e4e4;
  71. border-radius: 12px;
  72. margin-top: 16px;
  73. }
  74. .candidate-informations-container {
  75. display: flex;
  76. flex-direction: column;
  77. }
  78. .candidate-informations-sub-container {
  79. margin-top: 36px;
  80. }
  81. .informations-candidate-header {
  82. font-family: "Source Sans Pro";
  83. font-style: normal;
  84. font-weight: 600;
  85. font-size: 16px;
  86. line-height: 20px;
  87. color: #272727;
  88. }
  89. .candidate-property-container {
  90. display: flex;
  91. flex-direction: column;
  92. }
  93. .candidate-property {
  94. margin-top: 18px;
  95. font-family: Source Sans Pro;
  96. font-size: 16px;
  97. font-weight: 400;
  98. line-height: 20px;
  99. letter-spacing: 0em;
  100. }
  101. .candidate-property-value {
  102. @extend .candidate-property;
  103. color: #1e92d0;
  104. }
  105. .candidate-informations-sub-container {
  106. display: flex;
  107. }
  108. .comment-container {
  109. display: flex;
  110. flex-direction: column;
  111. padding-left: 36px;
  112. padding-right: 36px;
  113. padding-top: 36px;
  114. }
  115. .comment-sub-container {
  116. display: flex;
  117. align-items: center;
  118. }
  119. .comment-sub-container:not(:first-child) {
  120. margin-top: 36px;
  121. }
  122. .comment-sender {
  123. display: flex;
  124. align-items: center;
  125. justify-content: center;
  126. width: 40px;
  127. height: 40px;
  128. border-radius: 50%;
  129. box-sizing: border-box;
  130. border: 1px solid;
  131. border-color: #226cb0;
  132. }
  133. .comment-sender p {
  134. color: #226cb0;
  135. }
  136. .comment-message {
  137. display: flex;
  138. flex-direction: column;
  139. justify-content: center;
  140. align-items: flex-end;
  141. padding: 9px;
  142. gap: 9px;
  143. height: fit-content;
  144. background: #f4f4f4;
  145. border-radius: 12px;
  146. margin-left: 18px;
  147. max-width: 400px;
  148. }
  149. .comment-message-content {
  150. align-self: flex-start;
  151. height: 20px;
  152. font-family: "Source Sans Pro";
  153. font-style: normal;
  154. font-size: 16px;
  155. line-height: 20px;
  156. }
  157. .comment-message-date {
  158. align-self: flex-end;
  159. height: 15px;
  160. font-family: "Source Sans Pro";
  161. font-style: normal;
  162. font-weight: 400;
  163. font-size: 12px;
  164. line-height: 15px;
  165. color: #272727;
  166. }
  167. .comment-separation-line {
  168. width: 100%;
  169. height: 0px;
  170. border: 1px solid #e4e4e4;
  171. background: #e4e4e4;
  172. }
  173. .send-comment-container {
  174. margin-top: 18px;
  175. }
  176. .send-comment-container p {
  177. font-family: "Source Sans Pro";
  178. font-weight: 400;
  179. font-size: 16px;
  180. line-height: 20px;
  181. color: #9d9d9d;
  182. }
  183. .send-comment-sub-container {
  184. display: flex;
  185. margin-top: 9px;
  186. height: 56px;
  187. margin-bottom: 36px;
  188. }
  189. .comment-send-btn {
  190. display: flex;
  191. flex-direction: row;
  192. justify-content: center;
  193. align-items: center;
  194. padding: 18px 36px;
  195. gap: 10px;
  196. background: #ffffff;
  197. border: 1px solid #226cb0;
  198. border-radius: 9px;
  199. border: 1px solid #226cb0;
  200. width: 156px;
  201. margin-left: 18px;
  202. }
  203. .comment-send-btn-responsive {
  204. display: flex;
  205. flex-direction: row;
  206. justify-content: center;
  207. align-items: center;
  208. background: #ffffff;
  209. border: 1px solid #226cb0;
  210. border-radius: 9px;
  211. border: 1px solid #226cb0;
  212. margin-left: 18px;
  213. width: 54px;
  214. height: 54px;
  215. }
  216. .comment-send-btn:hover {
  217. cursor: pointer;
  218. }
  219. .comment-send-btn-responsive:hover {
  220. cursor: pointer;
  221. }
  222. .comment-send-btn-responsive img {
  223. margin: 0;
  224. }
  225. .comment-send-btn p {
  226. width: 62px;
  227. height: 15px;
  228. font-family: "Source Sans Pro";
  229. font-style: normal;
  230. font-weight: 600;
  231. font-size: 12px;
  232. line-height: 15px;
  233. letter-spacing: 0.04em;
  234. text-transform: uppercase;
  235. color: #226cb0;
  236. flex: none;
  237. order: 1;
  238. flex-grow: 0;
  239. }
  240. .comment-send-btn img {
  241. width: 12px;
  242. height: 12px;
  243. }
  244. .comment-send-btn-responsive img {
  245. width: 12px;
  246. height: 12px;
  247. }
  248. .candidate-users {
  249. background-color: #f4f4f4;
  250. }
  251. .candidate-user {
  252. color: #226cb0;
  253. }
  254. .applicant-ads-container {
  255. margin-top: 36px;
  256. }
  257. .applicant-ads-container > p {
  258. font-family: "Source Sans Pro";
  259. font-weight: 600;
  260. font-size: 24px;
  261. line-height: 32px;
  262. letter-spacing: 0.02em;
  263. color: #272727;
  264. }
  265. .applicant-ads-sub-container {
  266. margin-top: 18px;
  267. display: flex;
  268. margin-left: -20px;
  269. }
  270. .applicant-add {
  271. display: flex;
  272. flex-direction: column;
  273. align-items: center;
  274. padding: 36px;
  275. gap: 18px;
  276. background: #ffffff;
  277. border: 1px solid #e4e4e4;
  278. border-radius: 12px;
  279. width: 247px;
  280. height: 238px;
  281. cursor: pointer;
  282. margin-left: 27px;
  283. }
  284. .applicant-add-date {
  285. font-family: Source Sans Pro;
  286. font-size: 12px;
  287. font-weight: 400;
  288. line-height: 15px;
  289. letter-spacing: 0em;
  290. }
  291. .applicant-add-title {
  292. font-family: "Source Sans Pro";
  293. font-weight: 600;
  294. font-size: 16px;
  295. line-height: 20px;
  296. color: #226cb0;
  297. }
  298. .applicant-add-site {
  299. display: flex;
  300. flex-direction: column;
  301. justify-content: center;
  302. align-items: center;
  303. background: #ffffff;
  304. padding: 5px;
  305. border: 1px solid #e4e4e4;
  306. border-radius: 8px;
  307. font-size: 16px;
  308. font-family: "Source Sans Pro";
  309. font-weight: 400;
  310. color: #272727;
  311. }
  312. .applicant-ads-buttons-container {
  313. display: flex;
  314. align-self: flex-end;
  315. align-items: center;
  316. margin-bottom: 54px;
  317. margin-top: 18px;
  318. }
  319. .applicant-cv-button {
  320. display: flex;
  321. flex-direction: row;
  322. justify-content: center;
  323. align-items: center;
  324. padding: 18px 72px;
  325. gap: 10px;
  326. background: #226cb0;
  327. border-radius: 9px;
  328. width: 212px;
  329. height: 51px;
  330. font-family: "Source Sans Pro";
  331. font-weight: 600;
  332. font-size: 12px;
  333. line-height: 15px;
  334. letter-spacing: 0.04em;
  335. text-transform: uppercase;
  336. color: #ffffff;
  337. text-decoration: none;
  338. }
  339. .applicant-ads-back-button {
  340. margin-right: 36px;
  341. font-family: "Source Sans Pro";
  342. font-weight: 400;
  343. font-size: 16px;
  344. line-height: 20px;
  345. text-decoration-line: underline;
  346. color: #226cb0;
  347. cursor: pointer;
  348. }
  349. .tagStyle {
  350. color: #226cb0;
  351. font-family: Source Sans Pro;
  352. font-size: 16px;
  353. font-weight: 600;
  354. line-height: 20px;
  355. letter-spacing: 0em;
  356. }
  357. .comment-input {
  358. @extend .tagStyle;
  359. min-width: 368px;
  360. max-width: 368px;
  361. }
  362. .comment-input::placeholder {
  363. height: 20px;
  364. font-family: "Source Sans Pro";
  365. font-style: italic;
  366. font-weight: 400;
  367. font-size: 16px;
  368. line-height: 20px;
  369. color: #9d9d9d;
  370. flex: none;
  371. }
  372. .comment-input-list {
  373. @extend .tagStyle;
  374. }
  375. .comment-message-con {
  376. max-width: 400px;
  377. }
  378. .comment-container-header {
  379. font-family: "Source Sans Pro";
  380. font-style: normal;
  381. font-weight: 600;
  382. font-size: 18px;
  383. line-height: 32px;
  384. letter-spacing: 0.02em;
  385. color: #272727;
  386. }
  387. .applicant-ads-container-2 {
  388. display: flex;
  389. align-items: center;
  390. margin-top: 18px;
  391. }
  392. @media only screen and (max-width: 930px) {
  393. .comment-container {
  394. width: 500px;
  395. }
  396. .comment-input {
  397. width: 250px;
  398. }
  399. .comment-message-con {
  400. max-width: 300px;
  401. }
  402. }
  403. @media only screen and (max-width: 820px) {
  404. .comment-container {
  405. width: 400px;
  406. }
  407. .comment-input {
  408. width: 170px;
  409. }
  410. .comment-message-con {
  411. max-width: 200px;
  412. }
  413. .comment-send-btn {
  414. width: 90;
  415. padding: 10px 20px;
  416. }
  417. .send-comment-sub-container {
  418. height: 45px;
  419. margin-bottom: 20px;
  420. }
  421. .comment-input ::placeholder {
  422. font-size: 14px;
  423. line-height: 18px;
  424. padding-top: 2px;
  425. }
  426. }
  427. @media only screen and (max-width: 700px) {
  428. .comment-container {
  429. width: 380px;
  430. }
  431. .comment-message-con {
  432. max-width: 180px;
  433. }
  434. .comment-send-btn {
  435. width: 110;
  436. padding: 10px 20px;
  437. }
  438. }
  439. @media only screen and (max-width: 680px) {
  440. .content-candidate-container {
  441. flex-direction: column;
  442. }
  443. .comment-container {
  444. margin-top: 30px;
  445. }
  446. }
  447. @media only screen and (max-width: 540px) {
  448. .candidate-header {
  449. height: 30px;
  450. font-family: Source Sans Pro;
  451. font-size: 30px;
  452. line-height: 30px;
  453. }
  454. .candidate-lower-header {
  455. font-size: 18px;
  456. line-height: 26px;
  457. }
  458. .applicant-cv-button {
  459. padding: 10px 52px;
  460. gap: 7px;
  461. border-radius: 7px;
  462. width: 180px;
  463. height: 40px;
  464. font-size: 10px;
  465. line-height: 12px;
  466. text-align: center;
  467. }
  468. }
  469. @media only screen and (max-width: 480px) {
  470. .comment-container {
  471. width: 297px;
  472. }
  473. .comment-input {
  474. width: 100px;
  475. }
  476. .comment-input::placeholder {
  477. font-size: 12px;
  478. line-height: 15px;
  479. padding-top: -2px;
  480. }
  481. .comment-message-con {
  482. max-width: 130px;
  483. }
  484. .comment-send-btn {
  485. padding: 5px 5px;
  486. }
  487. .comment-container {
  488. padding: 20px;
  489. }
  490. .candidate-header {
  491. height: 20x;
  492. font-size: 20px;
  493. line-height: 20px;
  494. }
  495. .candidate-lower-header {
  496. font-size: 17px;
  497. line-height: 17px;
  498. }
  499. }
  500. @media only screen and (max-width: 361px) {
  501. .main-candidate-container{
  502. padding-right: 36px;
  503. }
  504. .top-candidate-container {
  505. margin-left: 36px;
  506. }
  507. .content-candidate-container {
  508. margin-left: 36px;
  509. }
  510. .comment-input {
  511. @extend .tagStyle;
  512. min-width: 195px;
  513. max-width: 195px;
  514. height: 54px;
  515. }
  516. .comment-send-btn {
  517. width: fit-content;
  518. }
  519. .comment-input::placeholder {
  520. font-size: 10px;
  521. line-height: 12px;
  522. padding: 14px;
  523. }
  524. .comment-container {
  525. width: 300px;
  526. padding-left: 18px;
  527. }
  528. .content-candidate-container {
  529. justify-content: initial;
  530. }
  531. .applicant-ads-container-2 {
  532. flex-direction: column-reverse;
  533. align-items: flex-start;
  534. }
  535. .slick-list {
  536. padding-left: 0 !important;
  537. }
  538. .applicant-ads-back-button {
  539. font-size: 14px;
  540. line-height: 18px;
  541. margin-right: 0;
  542. }
  543. .applicant-cv-button {
  544. padding: 18px 45px;
  545. width: 158px;
  546. font-size: 12px;
  547. line-height: 15px;
  548. letter-spacing: 0.04em;
  549. }
  550. .active-ads-ads-arrows {
  551. margin-left: -0.75rem;
  552. }
  553. .applicant-ads-buttons-container{
  554. margin-left: 36px;
  555. }
  556. }