feat(sreez): Add basic SREEZ website, almost ready for first deployment

This commit is contained in:
Jean-Gabriel Gill-Couture
2024-02-27 23:40:03 -05:00
parent 0b892980ca
commit b7c7a44301
20 changed files with 3448 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
body {
font-family: sans-serif;
text-align: center;
font-size: 1.25rem;
}
h1 {
font-size: 3rem;
.subtitle {
font-size: 2rem;
}
}
.card-list {
display: flex;
flex-direction: row;
text-align: left;
justify-content: center;
.card {
max-width: 400px;
border: solid 3px black;
border-radius: 20px;
margin: 30px;
h3 {
text-align: center;
margin-bottom: 30px;
margin-top: 30px;
}
ul {
list-style-type: disc;
padding-right: 15px;
li {
padding-bottom: 10px;
}
}
}
}