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

64 lines
890 B
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-07 19:06:36 +00:00
font-family: Arial, Helvetica, 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
/* text based browsers */
hr {
display: none;
}
2022-12-13 16:59:47 +00:00
a {
2023-01-07 17:49:47 +00:00
color: #00f;
}
2023-01-07 19:06:36 +00:00
h1, h2 {
2023-01-07 17:49:47 +00:00
font-weight: normal;
}
header {
background: #eee;
2022-12-13 16:59:47 +00:00
}
2023-01-07 17:49:47 +00:00
header > nav {
2023-01-07 19:06:36 +00:00
padding: 0.75rem;
2022-12-13 16:59:47 +00:00
margin: auto;
2022-12-29 01:53:33 +00:00
max-width: 37rem;
2022-12-13 16:59:47 +00:00
}
2023-01-07 17:49:47 +00:00
main {
2023-01-07 19:06:36 +00:00
padding: 0 0.75rem 0 0.75rem;
2023-01-07 17:49:47 +00:00
margin: auto;
max-width: 37rem;
}
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 {
border-collapse: collapse;
width: 100%;
}
td, th {
text-align: left;
2023-01-07 17:49:47 +00:00
padding: .5rem;
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 {
font-family: "DejaVu Sans Mono", Consolas, monospace;
2023-01-07 17:49:47 +00:00
background: #eee;
padding: .5rem;
2022-12-18 14:09:40 +00:00
max-width: 100%;
display: block;
overflow-x: auto;
overflow-y: hidden;
2022-11-29 12:49:29 +00:00
}