mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-23 17:25:08 +02:00
fix: fixed ImageSection being broken on mobile feat: added proper imprint feat: added name to privacy-policy feat: bump version fix: fixed footer not rendering correct on some mobile devices chore: bump version feat: imported html from Config repo Updated packages Migration from astro to solid-start Add database and auth Add discord rest testing Database schema rework API meeting progress Fix styles
64 lines
1 KiB
SCSS
64 lines
1 KiB
SCSS
.hdi-title {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.hdi-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;
|
|
|
|
.desktop {
|
|
display: none;
|
|
}
|
|
|
|
.mobile {
|
|
display: flex;
|
|
border-radius: 5px;
|
|
max-width: 100%;
|
|
}
|
|
@media (min-width: 600px) {
|
|
.desktop {
|
|
display: flex;
|
|
border-radius: 5px;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.mobile {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.hdi-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;
|
|
}
|
|
}
|
|
}
|