Spaces:
Runtime error
Runtime error
body{ | |
height: 150vh; | |
} | |
.card-container { | |
flex-wrap: wrap; | |
margin: 10px auto; | |
display: grid; | |
grid-template-columns: repeat(3, 1fr); | |
padding: 40px; | |
} | |
.container-candidatos { | |
margin: 50px auto; | |
padding: 50px; | |
position: relative; | |
background-color: var(--grey); | |
box-sizing: border-box; | |
border-radius: 10px; | |
width: 80%; | |
box-shadow: | |
-3px 0 5px rgba(0, 0, 0, 0.3), | |
3px 0 5px rgba(0, 0, 0, 0.3); | |
place-content: center; | |
} | |
.card-content{ | |
background: var(--light-grey); | |
margin: 10px; | |
border-radius: 10px; | |
min-width: 420px; | |
padding-bottom: 10px; | |
} | |
.card-content:hover { | |
transition: all 0.3s; | |
transform: translateX(10px); | |
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); | |
} | |
.header-page-candidatos { | |
padding-left: 10px; | |
} | |
.card-column { | |
padding-top: 86px | |
} | |
.filter-head { | |
list-style: none; | |
display: flex; | |
position: absolute; | |
width: 60%; | |
left: 30%; | |
top: 0; | |
margin-top: 10px; | |
background: linear-gradient(to left, var(--secondary-blue), var(--blue-one)); | |
; | |
padding: 10px; | |
color: white; | |
border-radius: 40px; | |
align-items: center; | |
user-select: none; | |
} | |
.filter-head li { | |
display: flex; | |
position: relative; | |
align-items: center; | |
gap: 10px; | |
justify-content: center; | |
margin: 0 auto; | |
} | |
.dropdown-funnel { | |
display: inline-block; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} | |
.dropdown-menu { | |
display: none; | |
position: absolute; | |
top: 100%; | |
left: 0; | |
background-color: #f9f9f9; | |
min-width: 100px; | |
padding: 5px; | |
border: 1px solid #ccc; | |
white-space: nowrap; | |
} | |
.dropdown-menu li { | |
display: flex; | |
padding: 5px 10px 6px 10px; | |
cursor: pointer; | |
justify-content: space-around; | |
} | |
.dropdown { | |
width: 200px; | |
} | |
i { | |
font-size: 30px; | |
} | |
.filter-content { | |
display: flex; | |
align-items: center; | |
gap: 20px; | |
} | |
#status-dropdown { | |
width: auto; | |
text-align: center; | |
min-width: 160px; | |
height: 26px; | |
border: none; | |
opacity: 0.9; | |
} | |
#status-dropdown:focus-visible { | |
outline: 1px solid var(--grey); | |
} | |
.container-input { | |
position: relative; | |
} | |
.input-search { | |
width: 150px; | |
padding: 10px 0px 10px 40px; | |
border-radius: 9999px; | |
border: solid 1px #333; | |
transition: all .2s ease-in-out; | |
outline: none; | |
background-color: linear-gradient(to bottom, #f9f9f9, #ccc); | |
opacity: 0.8; | |
} | |
.container-input svg { | |
position: absolute; | |
top: 50%; | |
left: 10px; | |
transform: translate(0, -50%); | |
} | |
.input-search:focus { | |
opacity: 0.8; | |
width: 300px; | |
} | |
.icons-filter { | |
display: flex; | |
gap: 60px | |
} | |
#not-found { | |
color: black; | |
} | |
.no-cards-available{ | |
display: flex; | |
flex-direction: column; | |
width: 100%; | |
height: 150px; | |
align-content: flex-start; | |
align-items: center; | |
justify-content: center; | |
color: rgba(0, 0, 0, 0.16); | |
} | |
.no-cards-available i{ | |
font-size: 90px; | |
} | |
.status-bar { | |
height: 5px; | |
width: 100%; | |
border-top-right-radius: 10px; | |
} | |
.status-bar{ | |
background: linear-gradient(to right, var(--blue-one) 65%, var(--secondary-blue) 90%); | |
} | |
.status-bar.Background_check{ | |
background: linear-gradient(to right, var(--blue-one) 65%, var(--primary-orange) 90%); | |
} | |
.status-bar.Entrevista_técnica{ | |
background: linear-gradient(to right, var(--blue-one) 65%, var(--purple-blue) 90%); | |
} | |
.status-bar.Aprovado{ | |
background: linear-gradient(to right, var(--blue-one) 65%, var(--mineral-green) 90%);} | |
.div-card-title, .div-card-body{ | |
padding: 5px 10px; | |
} | |
.div-card-title p{ | |
margin: 1px; | |
} | |
#card-nome{ | |
font-size: 20px; | |
font-weight: 500; | |
} | |
.page-content { | |
position: absolute; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: rgba(0, 0, 0, 0.5); | |
z-index: 9999; | |
overflow: hidden; | |
display: none; | |
} | |
div.modal-choose-vaga{ | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
width: 600px; | |
height: 300px; | |
position: absolute; | |
left: 50%; | |
top: 20%; | |
transform: translate(-50%, -50%); | |
padding: 20px; | |
border-radius: 10px; | |
background: var(--grey); | |
} | |
i#new-candidate{ | |
font-size: 60px; | |
margin-top: 50px; | |
color: rgba(0, 0, 0, 0.5); | |
cursor: pointer; | |
} | |
select#select-vaga{ | |
text-align: center; | |
padding: 2px 10px; | |
} | |
div.card-avaliacao{ | |
position: absolute; | |
left: 90%; | |
margin-top: 5px; | |
} |