tools/404.css
zyqunix 3cf2363147 1. changed to a global css instead of using the same shit over and over.
2. deleted soem unused stuff
3. stole some windows' api virtual keys site keys
2025-01-17 23:14:57 +01:00

43 lines
558 B
CSS

@import url(/global.css);
.main {
text-align: center;
background-color: #4b4b4b;
border-radius: 8px;
padding: 30px 100px;
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5);
width: 30vw;
max-width: 30vw;
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1rem;
}
@media (max-width: 768px) {
.main {
width: 95%;
}
h1 {
font-size: 1.6rem;
}
h2 {
font-size: 1.5rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 1.1rem;
}
h2 {
font-size: 1rem;
}
}