mirror of
https://github.com/khrysse/khrysse.github.io.git
synced 2025-06-27 06:31:56 +00:00
41 lines
670 B
CSS
41 lines
670 B
CSS
.noscript-message {
|
|
position: fixed;
|
|
inset: 0;
|
|
background-color: #0e0e10;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.noscript-message h1 {
|
|
font-size: 2.5rem;
|
|
color: #ff4f4f;
|
|
margin-bottom: 1rem;
|
|
text-shadow: 0 0 8px #ff4f4f;
|
|
}
|
|
|
|
.noscript-message p {
|
|
font-size: 1.1rem;
|
|
color: #dddddd;
|
|
max-width: 600px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.noscript-message a {
|
|
display: inline-block;
|
|
margin-top: 1rem;
|
|
color: #00c6ff;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.noscript-message a:hover {
|
|
color: #00ffe0;
|
|
text-shadow: 0 0 4px #00ffe0;
|
|
}
|