This commit is contained in:
jane 2023-04-11 21:48:18 -04:00
commit 220d96a287
16 changed files with 260 additions and 0 deletions

18
sass/elements.scss Normal file
View file

@ -0,0 +1,18 @@
.centered {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.smallText {
font-size: 10px !important;
}
.smallText span {
color: white;
}
.smallText li {
list-style-type: none;
}

11
sass/globals.scss Normal file
View file

@ -0,0 +1,11 @@
body {
background-color: #BF6375;
}
.section {
background-image: url('/cmark.png');
background-position-y: 55%;
background-position-x: 26%;
background-size: 400px;
background-repeat: no-repeat;
}

2
sass/style.scss Normal file
View file

@ -0,0 +1,2 @@
@import './elements.scss';
@import './globals.scss';