Add posts and old grade-calc

Fix small bugs
>bad commit
This commit is contained in:
2022-02-14 15:32:58 -05:00
parent 391fff28b1
commit bfacb23f8a
21 changed files with 1047 additions and 267 deletions

View File

@@ -5,6 +5,7 @@
top: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.9);
z-index: 100;
}
.search {

View File

@@ -150,9 +150,32 @@ section {
}
.block {
margin: 2rem;
margin: 0 2rem;
padding: 2rem;
/* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
border: 1px solid #ffffff;
border-radius: 1rem;
border-bottom: none;
}
.block:first-of-type {
border-top-right-radius: 1rem;
border-top-left-radius: 1rem;
margin-top: 2rem;
}
.block:last-of-type {
border-bottom: 1px solid #ffffff;
border-bottom-right-radius: 1rem;
border-bottom-left-radius: 1rem;
margin-bottom: 2rem;
}
code {
overflow-x: scroll;
max-width: 100%;
display: inline-block;
background-color: rgba(255, 255, 255, 0.1);
font-size: 1rem;
padding: 0.1rem 0.5rem;
vertical-align: bottom;
}