Spaces:
Runtime error
Runtime error
File size: 1,610 Bytes
b9a69cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
.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;
}
|