Spaces:
Runtime error
Runtime error
.container-vaga-page { | |
display: grid; | |
position: relative; | |
margin: 50px auto; | |
background-color: var(--grey); | |
box-sizing: border-box; | |
border-radius: 10px; | |
width: 90%; | |
box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.3); | |
} | |
.container-vaga-page-header{ | |
display: flex; | |
position: relative; | |
min-height: 130px; | |
margin: 10px; | |
background-color: var(--light-grey); | |
border-bottom-right-radius: 10px; | |
border-bottom-left-radius: 10px; | |
} | |
.vaga-info{ | |
position: absolute; | |
list-style: none; | |
left: 21%; | |
margin: 10px auto; | |
} | |
#vaga-cargo{ | |
font-size: 23px; | |
font-weight: 500; | |
} | |
#vaga-departamento{ | |
font-size: 20px; | |
font-weight: 400; | |
} | |
.buttons-interact { | |
display: flex; | |
justify-content: space-around; | |
border: none; | |
position: absolute; | |
left: 50%; | |
padding: 10px; | |
background-color: var(--secondary-blue); | |
border-radius: 20px; | |
width: 140px; | |
margin-top: 10px; | |
} | |
.buttons-interact-button { | |
border: none; | |
background-color: transparent; | |
color: white; | |
font-size: 25px; | |
} | |
.grid-candidatos { | |
min-height: 130px; | |
margin: 10px; | |
background-color: var(--light-grey); | |
border-top-right-radius: 10px; | |
border-top-left-radius: 10px; | |
} | |
.dt-container{ | |
position: relative; | |
clear: both; | |
width: 100%; | |
padding: 30px; | |
} | |
table.dataTable>tbody>tr>td{ | |
cursor: pointer; | |
} | |
table.dataTable>tbody>tr:hover{ | |
background-color: var(--grey); | |
transition: 0.1s ease-in; | |
} | |