willy.club/public/static/style/main.css

44 lines
640 B
CSS
Raw Normal View History

2023-01-21 13:12:54 +00:00
html, body {
height: 100%;
}
2022-11-29 12:49:29 +00:00
body {
2023-01-21 14:00:43 +00:00
background-color: darkblue;
2023-01-21 20:19:40 +00:00
background: url('../img/stars.png');
font-size: 1rem;
2023-01-21 13:12:54 +00:00
text-align: center;
color: white;
2023-01-02 12:11:03 +00:00
line-height: 1.5;
2023-01-21 13:12:54 +00:00
font-family: serif;
2023-01-21 14:00:43 +00:00
image-rendering: pixelated;
2022-12-13 16:59:47 +00:00
}
2023-01-07 17:49:47 +00:00
hr {
display: none;
}
2022-12-13 16:59:47 +00:00
a {
2023-01-21 20:19:40 +00:00
color: #0f0;
2022-12-13 16:59:47 +00:00
}
2023-01-07 17:49:47 +00:00
2023-01-21 13:12:54 +00:00
h1 {
border-bottom: 4px double yellow;
color: yellow;
2023-01-07 17:49:47 +00:00
}
2022-12-13 16:59:47 +00:00
img {
height: auto;
2023-01-07 17:49:47 +00:00
max-width: 100%;
2022-12-13 16:59:47 +00:00
}
2022-12-18 14:09:40 +00:00
pre, code {
2023-01-21 13:12:54 +00:00
margin: auto;
font-family: monospace;
2023-01-21 14:00:43 +00:00
background: black;
color: greenyellow;
2023-01-21 13:12:54 +00:00
padding: 8px;
max-width: min-content;
2022-12-18 14:09:40 +00:00
display: block;
overflow-x: auto;
overflow-y: hidden;
2022-11-29 12:49:29 +00:00
}