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

44 lines
860 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-02-12 13:54:12 +00:00
background: url('../img/darkskullsbg.png');
2023-01-21 13:12:54 +00:00
text-align: center;
color: white;
2023-01-21 14:00:43 +00:00
image-rendering: pixelated;
2023-02-12 18:19:56 +00:00
font-size: 1rem;
font-family: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
line-height: 1.5;
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 {
2023-01-22 09:47:36 +00:00
border-bottom: .25rem double yellow;
2023-01-21 13:12:54 +00:00
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
}
2023-01-22 09:47:36 +00:00
code {
display: block;
max-width: min-content;
2023-01-21 13:12:54 +00:00
margin: auto;
2023-01-21 14:00:43 +00:00
background: black;
color: greenyellow;
2023-01-22 09:47:36 +00:00
padding: .75rem;
2022-12-18 14:09:40 +00:00
overflow-x: auto;
overflow-y: hidden;
2023-02-12 18:19:56 +00:00
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
2022-11-29 12:49:29 +00:00
}