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

64 lines
886 B
CSS

body {
color: #111;
background: #fff;
line-height: 1.5;
font-size: 1rem;
font-family: Arial, sans-serif;
margin: 0;
}
/* text based browsers */
hr {
display: none;
}
a {
color: #00f;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
header {
background: #eee;
}
header > nav {
padding: 1rem;
margin: auto;
max-width: 37rem;
}
main {
padding: 0 1rem 0 1rem;
margin: auto;
max-width: 37rem;
}
img {
display: block;
height: auto;
max-width: 100%;
}
table {
border-collapse: collapse;
width: 100%;
}
td, th {
text-align: left;
padding: .5rem;
}
tr:nth-child(even) {
background: #eee;
}
pre, code {
font-family: "DejaVu Sans Mono", Consolas, monospace;
background: #eee;
padding: .5rem;
max-width: 100%;
display: block;
overflow-x: auto;
overflow-y: hidden;
}