WIP: added CSS to how-do-i page, stack page, edited about page, edited links in footer, edited invite-link in header

This commit is contained in:
moonleay 2023-12-03 19:47:41 +01:00
parent 5b49090133
commit c34662ce2d
No known key found for this signature in database
GPG key ID: 82667543CCD715FB
8 changed files with 175 additions and 71 deletions

View file

@ -0,0 +1,38 @@
.title {
font-size: 3rem;
text-align: center;
margin-bottom: 1.2rem;
}
.section {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 4px;
margin: 1rem;
padding: 1rem;
display: block;
.imgwrapper {
margin: auto;
text-align: center;
img {
display: none;
}
p, code {
display: flex;
}
@media (min-width: 600px) {
img {
display: flex;
border-radius: 5px;
max-width: 90%;
}
p, code {
display: none;
}
}
}
}