Spaces:
Runtime error
Runtime error
body { | |
height: 115vh; | |
} | |
.container-vagas { | |
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; | |
} | |
.header-page-vagas { | |
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: 120px; | |
height: 26px; | |
border: none; | |
opacity: 0.9; | |
} | |
#status-dropdown:focus-visible{ | |
outline: 1px solid var(--grey); | |
} | |
.card-container { | |
margin: 10px auto; | |
display: grid; | |
grid-template-columns: repeat(2, 1fr); | |
padding: 40px; | |
} | |
.card-content { | |
padding-bottom: 20px; | |
margin: 10px; | |
background-color: white; | |
border-radius: 0 0 10px 0; | |
width: 44%; | |
user-select: none; | |
} | |
.card-content:hover { | |
transition: all 0.3s; | |
transform: translateX(10px); | |
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); | |
} | |
.status-bar { | |
height: 5px; | |
width: 100%; | |
} | |
.ativo { | |
border-top-right-radius: 10px; | |
background: linear-gradient(to right, var(--blue-one) 65%, var(--mineral-green) 90%); | |
} | |
.inativo { | |
border-top-right-radius: 10px; | |
background: linear-gradient(to right, var(--blue-one) 65%, #f04641 90%); | |
} | |
.div-card-title { | |
display: grid; | |
grid-template-columns: 2fr 1fr; | |
justify-items: start; | |
padding: 5px 10px; | |
} | |
.card-data-publicacao{ | |
padding: 5px 10px; | |
} | |
.add-vaga-button { | |
background-color: var(--secondary-blue); | |
color: white; | |
border: none; | |
border-radius: 5px; | |
padding: 10px 20px; | |
font-size: 16px; | |
cursor: pointer; | |
} | |
/* Estilos para o botão quando hover */ | |
.add-vaga-button:hover { | |
background-color: #004a5e; | |
} | |
.header-filter { | |
display: flex; | |
flex-direction: column; | |
flex-wrap: nowrap; | |
margin-top: 50px; | |
} | |
#filtro-status { | |
max-width: 250px; | |
} | |
.hidden{ | |
display: none | |
} | |
.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; | |
} |