File size: 1,302 Bytes
935ac9d f934c43 935ac9d f934c43 935ac9d f934c43 935ac9d f934c43 935ac9d f934c43 935ac9d f934c43 935ac9d 4d45ff8 | 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 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.hero {
background-image: url('http://static.photos/technology/1200x630/5');
background-size: cover;
background-position: center;
background-blend-mode: overlay;
}
.question-group {
border-bottom: 1px solid #e5e7eb;
padding-bottom: 1.5rem;
}
.question-group:last-child {
border-bottom: none;
}
#results {
transition: all 0.3s ease-in-out;
}
/* Animation for assessment submission */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.5s ease-out forwards;
}
/* Tooltip styles */
.tooltip {
bottom: 100%;
left: 50%;
transform: translateX(-50%);
margin-bottom: 5px;
white-space: nowrap;
}
.tooltip:after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #1f2937 transparent transparent transparent;
}
/* Sidebar transition */
custom-sidebar {
transition: transform 0.3s ease;
}
@media (max-width: 768px) {
custom-sidebar {
transform: translateY(0);
}
}
|