website/.old/css/home.css
2023-06-02 19:06:31 +02:00

29 lines
339 B
CSS

.content {
margin-block: auto;
}
.home {
font-size: 1.2rem;
}
.home section {
text-align: center;
}
.home 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;
}
}