git push wip

This commit is contained in:
2023-03-27 21:49:34 -05:00
commit 630fd021b3
49 changed files with 1146 additions and 0 deletions

View File

@ -0,0 +1,31 @@
@import "../utils/variables";
.content {
text-align: center;
margin: 0 auto;
flex: 1 auto;
padding: 20px;
@media only screen and (min-width: $breakLarge) {
display: flex;
width: $width;
}
}
.vertical {
display: flex;
flex-direction: column;
justify-content: center;
}
.flexWrapper {
display: flex;
flex-direction: column;
justify-content: center;
min-height: 100vh;
}
.main {
width: 100%;
height: 100%;
}

View File

@ -0,0 +1,9 @@
.indexWrapper {
display: flex;
flex-direction: column;
justify-content: center;
}
.indexHeader {
font-size: 3em;
}

View File

@ -0,0 +1,5 @@
@import "../utils/variables";
.listHeader, .listContent {
text-align: left;
}

View File

@ -0,0 +1,5 @@
@import "../utils/variables";
.postWrapper {
text-align: left;
}