mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-24 17:55:07 +02:00
63 lines
972 B
SCSS
63 lines
972 B
SCSS
.title {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.section {
|
|
max-width: 1100px;
|
|
margin: 1rem auto;
|
|
width: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border-radius: 4px;
|
|
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: 100%;
|
|
}
|
|
|
|
p, code {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.footernotesection {
|
|
max-width: 1100px;
|
|
margin: 1rem auto;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
border-radius: 4px;
|
|
padding: 1rem;
|
|
display: block;
|
|
text-align: center;
|
|
a {
|
|
color: white;
|
|
text-decoration: underline;
|
|
font-size: 0.9rem;
|
|
transition: 0.5s;
|
|
|
|
&:hover {
|
|
color: rgb(96 59 255) !important;
|
|
}
|
|
}
|
|
}
|
|
|