Spaces:
Running
Running
File size: 1,169 Bytes
005c99b b39cfe8 005c99b b39cfe8 005c99b b39cfe8 005c99b b39cfe8 005c99b b39cfe8 005c99b b39cfe8 | 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 |
/* Base styles */
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
color: white;
}
/* Animation for floating elements */
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.5);
}
/* Page transitions */
.fade-in {
animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Responsive adjustments */
@media (max-width: 768px) {
.student-photo {
width: 180px;
height: 180px;
}
.student-name {
font-size: 1.8rem;
}
.major {
font-size: 1.2rem;
}
}
@media (max-width: 480px) {
.student-photo {
width: 150px;
height: 150px;
}
.student-name {
font-size: 1.5rem;
}
}
|