website/sass/home.scss

35 lines
365 B
SCSS
Raw Normal View History

2023-06-17 15:58:42 +02:00
.content {
margin-block: auto;
}
.home {
margin-top: 5rem;
font-size: 1.2rem;
section {
text-align: center;
}
a {
color: lightblue;
cursor: pointer;
text-decoration: underline;
}
#pgp {
cursor: pointer;
}
#pgpmobile {
display: none;
}
}
@media (max-width: 600px) {
#pgp {
display: none;
}
#pgpmobile {
display: inline-block;
}
}