Files
pacnpal-site/styles.css

57 lines
1.1 KiB
CSS

.skip-link:focus {
position: fixed !important;
left: 50% !important;
transform: translateX(-50%);
top: 10px !important;
width: auto !important;
height: auto !important;
padding: 10px 20px;
background: #ffcc00;
color: #1e1e2f;
font-weight: bold;
border-radius: 4px;
text-decoration: none;
z-index: 999999;
overflow: visible !important;
}
body {
font-family: 'ChicagoFLF', 'Courier New', monospace;
background: linear-gradient(135deg, #1e1e2f, #1e2f4f);
color: #fff;
text-align: center;
margin: 0;
}
header, footer {
padding: 20px;
background-color: rgba(30, 30, 47, 0.9);
}
h1, h2 {
color: #ffcc00;
}
p {
font-size: 1.2em;
}
section {
padding: 20px;
margin: 20px auto;
max-width: 800px;
background-color: rgba(30, 30, 47, 0.7);
border-radius: 8px;
}
a {
color: #99ddff;
text-decoration: underline;
transition: color 0.3s ease, text-decoration 0.3s ease;
}
a:hover, a:focus {
color: #ffcc00;
text-decoration: underline;
outline: none;
}
a:focus-visible {
outline: 2px solid #ffcc00;
outline-offset: 2px;
}