Initial commit

This commit is contained in:
Charlotte Van Petegem 2022-11-04 10:32:25 +01:00
commit 9a5b3e282a
No known key found for this signature in database
GPG key ID: 019E764B7184435A
17 changed files with 490 additions and 0 deletions

58
src/sass/style.scss Normal file
View file

@ -0,0 +1,58 @@
body {
margin: 0;
}
header {
border-bottom: black 1px solid;
padding: 0.5em;
section {
display: inline;
+ section::before {
content: '| ';
}
}
}
main {
padding: 0.5em;
max-width: 60em;
margin: 0 auto;
}
footer {
border-top: black 1px solid;
padding: 0.5em;
section {
display: inline;
+ section::before {
content: '| ';
}
}
}
pre {
padding: 0.5em;
}
.post-list {
padding: 0;
margin: 0;
li {
list-style-type: none;
}
}
.inline-list {
padding: 0;
margin: 0;
li {
display: inline;
list-style-type: none;
&+ li::before {
content: '/ '
}
}
}