Skip to content

Commit

Permalink
chore: remove 404 styles
Browse files Browse the repository at this point in the history
  • Loading branch information
obeys committed Dec 18, 2024
1 parent 15cb6b8 commit 448cf4c
Showing 1 changed file with 0 additions and 91 deletions.
91 changes: 0 additions & 91 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,94 +26,3 @@ body {
text-decoration: none;
font-size: 1rem;
}

/* ERROR PAGE STYLES */

.err-container {
min-height: 100vh;
display: flex;
justify-content: space-between;
align-items: center;
font-family: "Inter", sans-serif;
width: 100%;
max-width: 1200px;
padding: 2rem;
gap: 2rem;
margin: 0 auto;
}

.err-content {
flex: 1;
}

.err-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 600;
}

.err-subtitle {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.err-links h2 {
font-size: 1rem;
margin-bottom: 1.5rem;
font-weight: 500;
}

.err-links-grid {
display: grid;
gap: 1rem;
}

.err-nav-link {
color: #fff;
text-decoration: none;
font-size: 0.9rem;
opacity: 0.7;
transition: opacity 0.2s ease;
}

.err-nav-link:hover {
opacity: 1;
}

.err-code {
font-size: 8rem;
font-weight: 600;
opacity: 0.8;
line-height: 1;
}

/* Responsive design */
@media (max-width: 768px) {
.err-container {
flex-direction: column;
text-align: center;
}

.err-code {
font-size: 6rem;
}

.err-links-grid {
justify-content: center;
}
}

@media (max-width: 480px) {
.err-code {
font-size: 4rem;
}

.err-content h1 {
font-size: 2rem;
}

.err-subtitle {
font-size: 1rem;
}
}

0 comments on commit 448cf4c

Please sign in to comment.