66 lines
996 B
CSS
66 lines
996 B
CSS
* {
|
|
background-color: #282a33;
|
|
color: #f9f9f9;
|
|
}
|
|
body {
|
|
border: 1px solid lightgrey;
|
|
margin: 1em auto;
|
|
max-width: 80ch;
|
|
padding: 10px;
|
|
line-height: 1.4;
|
|
}
|
|
nav {
|
|
text-align: center;
|
|
}
|
|
nav a {
|
|
padding: 5px 10px;
|
|
}
|
|
nav a img {
|
|
width: 16px;
|
|
height: 16px;
|
|
display: inline-block;
|
|
margin: 0 4px 0 0;
|
|
}
|
|
#TOC {
|
|
border: 1px solid;
|
|
position: relative;
|
|
}
|
|
#TOC:before {
|
|
border-bottom: 1px solid;
|
|
content: 'Table of Contents';
|
|
display: block;
|
|
font-weight: bold;
|
|
padding: 5px;
|
|
position: relative;
|
|
}
|
|
.date {
|
|
color: grey;
|
|
}
|
|
.container {
|
|
max-width: 800px;
|
|
margin: auto;
|
|
}
|
|
p code, li code {
|
|
border: 1px solid brown;
|
|
border-radius: 2px;
|
|
color: brown;
|
|
padding: 1px 2px;
|
|
}
|
|
article img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
height: auto;
|
|
max-width: 100%;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
}
|
|
footer img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
height: auto;
|
|
max-width: 100%;
|
|
}
|