File size: 1,757 Bytes
a75b24b 4ca0be3 a75b24b 4ca0be3 a75b24b 4ca0be3 a75b24b 4ca0be3 a75b24b 4ca0be3 a75b24b 4ca0be3 a75b24b |
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 |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
body {
font-family: 'Open Sans', sans-serif;
scroll-behavior: smooth;
}
/* Large, accessible buttons */
.btn-large {
padding: 16px 32px;
font-size: 18px;
border-radius: 50px;
}
/* Focus styles for keyboard navigation */
a:focus, button:focus {
outline: 3px solid #3b82f6;
outline-offset: 2px;
}
/* High contrast mode utilities */
.high-contrast {
background-color: #000;
color: #fff;
}
.high-contrast a {
color: #ffff00;
}
.high-contrast a:hover {
color: #ffcc00;
}
/* Larger text for better readability */
.text-large {
font-size: 1.25rem;
line-height: 1.75rem;
}
/* Animation for interactive elements */
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: scale(1.05);
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #e0f2fe;
}
::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
background: #2563eb;
}
/* Responsive video container */
.video-container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}
/* Accessibility: Skip to content link */
.skip-link {
position: absolute;
top: -40px;
left: 0;
background: #3b82f6;
color: white;
padding: 8px;
z-index: 1000;
}
.skip-link:focus {
top: 0;
}
/* Custom focus ring */
.focus-ring {
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
} |