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

87 lines
1.4 KiB
CSS
Raw Normal View History

2022-11-29 12:49:29 +00:00
body {
2022-12-29 01:53:33 +00:00
color: #111;
2023-01-07 17:49:47 +00:00
background: #fff;
2023-01-02 12:11:03 +00:00
line-height: 1.5;
2023-01-07 17:49:47 +00:00
font-size: 1rem;
2023-01-20 19:33:45 +00:00
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
2023-01-07 17:49:47 +00:00
margin: 0;
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-07 17:49:47 +00:00
color: #00f;
}
header {
2023-01-20 19:33:45 +00:00
background: #77f;
2022-12-13 16:59:47 +00:00
}
2023-01-07 17:49:47 +00:00
header > nav {
2023-01-20 19:33:45 +00:00
padding: .75rem;
2022-12-13 16:59:47 +00:00
margin: auto;
2023-01-20 19:33:45 +00:00
max-width: 36rem;
}
header > nav > a {
text-decoration: none;
color: #fff;
2022-12-13 16:59:47 +00:00
}
2023-01-07 17:49:47 +00:00
main {
2023-01-20 19:33:45 +00:00
padding: 0 .75rem 0 .75rem;
2023-01-07 17:49:47 +00:00
margin: auto;
2023-01-20 19:33:45 +00:00
max-width: 36rem;
2023-01-07 17:49:47 +00:00
}
2022-12-13 16:59:47 +00:00
img {
display: block;
height: auto;
2023-01-07 17:49:47 +00:00
max-width: 100%;
2022-12-13 16:59:47 +00:00
}
table {
2023-01-08 16:29:13 +00:00
display: block;
2022-12-13 16:59:47 +00:00
border-collapse: collapse;
2023-01-08 16:29:13 +00:00
overflow: auto;
2022-12-13 16:59:47 +00:00
}
2023-01-08 16:32:56 +00:00
tbody {
display: table;
width: 100%;
}
2022-12-13 16:59:47 +00:00
td, th {
text-align: left;
2023-01-20 19:33:45 +00:00
padding: .75rem;
2023-01-08 16:29:13 +00:00
}
2022-12-13 16:59:47 +00:00
tr:nth-child(even) {
2022-12-29 01:53:33 +00:00
background: #eee;
2022-12-13 16:59:47 +00:00
}
2022-12-18 14:09:40 +00:00
pre, code {
2023-01-20 19:33:45 +00:00
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
2023-01-07 17:49:47 +00:00
background: #eee;
2023-01-20 19:33:45 +00:00
padding: .75rem;
2022-12-18 14:09:40 +00:00
max-width: 100%;
display: block;
overflow-x: auto;
overflow-y: hidden;
2023-01-08 16:46:33 +00:00
}
@media (prefers-color-scheme: dark) {
2023-01-20 19:33:45 +00:00
body {
color: #fff;
background: #000;
}
header {
background: #111;
}
a {
color: #aaf;
}
tr:nth-child(even) {
background: #111;
}
pre, code {
background: #111;
2023-01-08 16:46:33 +00:00
}
2022-11-29 12:49:29 +00:00
}