| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- .main-candidates-container {
- display: flex;
- flex-direction: column;
- margin-bottom: 36px;
- }
-
- .top-candidates-container {
- display: flex;
- justify-content: space-between;
- }
-
- .candidate-btn {
- margin-left: 20px;
- font-family: "Source Sans Pro";
- font-style: normal;
- font-weight: 400;
- font-size: 16px;
-
- color: #226cb0;
- text-transform: none;
- }
-
- .all-white-btn {
- background: linear-gradient(0deg, #e8f7ff, #e8f7ff),
- linear-gradient(0deg, #226cb0, #226cb0);
- }
-
- .candidate-btn-mobile {
- @extend .candidate-btn;
- // overrride style from candidate-btn class
- margin-left: 10px;
- }
-
- .invite-btn {
- padding: 18px 72px;
- gap: 10px;
- height: 51px;
- width: 190px;
- border-radius: 9px;
- display: flex;
- align-self: flex-end;
- margin-left: 60px;
- margin-bottom: 36px;
- }
-
- .candidates-options-container {
- display: flex;
- }
-
- .candidates-header {
- font-family: "Source Sans Pro";
- font-style: normal;
- font-weight: 600;
- font-size: 36px;
- line-height: 32px;
- letter-spacing: 0.02em;
- color: #272727;
- }
-
- .candidates-table {
- margin-top: 30px;
- width: 100%;
- display: flex;
- flex-direction: column;
- min-height: 70vh;
- align-items: space-between;
- }
-
- .candidates-image {
- height: 14px;
- width: 16px;
- margin-left: 10px;
- }
-
- .candidate-image-mobile {
- position: "relative";
- top: -0.25;
- }
-
- .invite-btn-color {
- color: #fff;
- background-color: #226cb0;
- }
-
- .ads-candidates-container {
- max-height: 837px;
- overflow-y: auto;
- overflow-x: hidden;
- }
-
- .ads-candidates-slider {
- display: flex;
- }
-
- .ads-candidates-top-container {
- display: flex;
- align-items: center;
- }
-
- .ads-candidates-title {
- font-family: Source Sans Pro;
- font-size: 24px;
- font-weight: 600;
- letter-spacing: 0.02em;
- margin-left: 18px;
- }
-
- .ads-candidates-numberOfApplicants {
- font-family: Source Sans Pro;
- font-size: 16px;
- font-weight: 600;
- letter-spacing: 0em;
- color: #226cb0;
- margin-left: 5px;
- }
-
- .ads-candidates-image {
- width: 49px;
- height: 39px;
- }
-
- .top-cnd {
- margin-top: 39px;
- }
-
- .top-cnd > div:not(:first-child) {
- margin-top: 79px;
- }
-
- .filter-date-container {
- display: flex;
- flex-direction: column;
- margin-top: 10px;
- }
-
- .filter-date-container input {
- border: 1px solid gray;
- border-radius: 4px;
- height: 40px;
- padding-left: 12px;
- font-family: Source Sans Pro;
- font-size: 16px;
- font-style: italic;
- font-weight: 400;
- line-height: 20px;
- letter-spacing: 0em;
- text-align: left;
- color: #9d9d9d;
- margin-top: 5px;
- }
-
- .left-move-candidateAd {
- margin-left: -0.75rem !important;
- }
-
- @media only screen and (max-width: 600px) {
- .ads-candidates-title {
- font-size: 18px;
- margin-left: 10px;
- }
- .ads-candidates-image {
- width: 40px;
- height: 30px;
- }
- .ads-candidates-numberOfApplicants {
- font-size: 14px;
- }
- }
|