Add project page

This commit is contained in:
2022-10-07 23:03:39 +02:00
parent 85acc1bdac
commit f30332bc5e
16 changed files with 1677 additions and 36 deletions

31
styles/globals.scss Normal file
View File

@@ -0,0 +1,31 @@
@font-face {
font-family: CascadiaCode;
src: url(fonts/CascadiaCode.woff2);
}
* {
box-sizing: border-box !important;
}
:root {
--repl-color: rgb(24, 138, 24);
--repl-color-link: rgb(31, 179, 31);
--repl-color-hint: rgba(24, 138, 24, 0.3);
}
body {
margin: 0;
padding: 0;
}
#blogBody {
header {
position: sticky;
top: 10px;
}
main {
max-width: 900px;
margin: 0 auto;
}
}