hazelnut.dev/static/style.css

88 lines
1.5 KiB
CSS

html {
font-size: 16px;
}
body {
margin: auto;
max-width: 80ch;
font-size: 1rem;
line-height: 1.6;
font-family:Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
color: #d3d0c8;
background-color: #2d2d2d;
padding: 1rem;
}
h1, h2, h3 {
font-weight: bold;
font-size: 1em;
}
h1 {
border-bottom: 4px solid #d3d0c8;
border-top: 4px solid #d3d0c8;
padding-top: 0.5em;
}
h2 {
border-bottom: 2px solid #d3d0c8;
}
h1::before {
content: "# ";
}
h2::before {
content: "## ";
}
h3::before {
content: "### ";
}
a {
text-decoration: none;
border-bottom: 1px solid #cd98cd;
color: #d3d0c8;
}
a::after {
content: " " url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20class='i-external'%20viewBox='0%200%2032%2032'%20width='14'%20height='14'%20fill='none'%20stroke='%23ffcd5d'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='9.38%'%3E%3Cpath%20d='M14%209%20L3%209%203%2029%2023%2029%2023%2018%20M18%204%20L28%204%2028%2014%20M28%204%20L14%2018'/%3E%3C/svg%3E");
}
nav a {
color: #ffcd5d;
}
table {
border-collapse: collapse;
}
table, th, td {
padding: 0.5em;
}
th {
border-bottom: 2px solid #d3d0c8;
}
td {
border: 1px solid #d3d0c8;
}
table tr td:first-child {
border-left: 0;
}
table tr td:last-child {
border-right: 0;
}
table tr:last-child td {
border-bottom: 0;
}
tr:nth-child(even) {
background-color: #353535;
}