mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
28 lines
384 B
CSS
28 lines
384 B
CSS
html, body {
|
|
font-family: sans-serif, verdana;
|
|
font-size: smaller;
|
|
color: #666;
|
|
}
|
|
h1 {
|
|
border-bottom: 1px solid maroon;
|
|
}
|
|
table {
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
td, th {
|
|
margin: 0;
|
|
font-size: small;
|
|
border-bottom: 1px solid #ccc;
|
|
padding: 3px;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background: #efefef;
|
|
}
|
|
|
|
dt {
|
|
font-weight: bold;
|
|
}
|
|
|