Spaces:
Runtime error
Runtime error
File size: 2,396 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
#toastBoxInetum {
position: absolute;
bottom: -700px;
right: 1px;
display: flex;
align-items: flex-end;
flex-direction: column;
overflow: hidden;
padding: 20px;
}
.toastInetum{
display: flex;
align-items: center;
position: relative;
width: 400px;
height: 80px;
background: #fff;
font-weight: 500;
margin: 15px 0;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
transform: translateX(100%);
animation: moveleft 0.4s linear forwards;
}
.toastInetum i{
margin: 0 20px;
font-size: 35px;
color: var(--mineral-green);
}
.toastInetum.error-proccess i{
color: var(--primary-red);
}
.toastInetum.warning-proccess i{
color: #cca123;
}
.toastInetum::after{
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 5px;
background: var(--mineral-green);
animation: anim 5s linear forwards;
}
@keyframes moveleft {
100%{
transform: translateX(0);
}
}
@keyframes anim {
100%{
width: 0;
}
}
.toastInetum.error-proccess::after{
background: var(--primary-red);
}
.toastInetum.warning-proccess::after{
background: #cca123;
}
.container-candidato{
width: 80%;
margin: 0 auto;
}
.tab_trigger ul{
padding: 0;
margin: 0;
list-style: none;
}
.tab_trigger ul li{
display: inline-block;
margin-right: 2px;
border-radius: 12px 12px 0 0;
background-color: var(--blue-one);
color: white;
padding: 8px 25px;
cursor: pointer;
transition: all 0.3s;
font-weight: 700;
}
.tab_trigger ul li:hover,
.tab_trigger ul li.active{
background-color: var(--mineral-green);
}
.tab_content_box{
display: none;
font-size: 20px;
color: #000;
background-color: var(--grey);
padding: 25px;
border-radius: 0 12px 12px 12px;
}
.tab_content_box:first-child{
display: block;
}
#modalPageCandidato{
align-items: center;
justify-content: center;
position: fixed;
top: 14%;
left: 50%;
transform: translate(-50%, -50%);
padding: 10px 15px 10px 15px;
background: var(--mineral-green);
color: white;
font-weight: 500;
border-radius: 40px;
transition: all 0.3s ease;
} |