website/v4/css/home.css

30 lines
353 B
CSS
Raw Normal View History

2023-03-05 14:35:00 +01:00
.content {
margin-block: auto;
}
2023-03-05 02:06:45 +01:00
.home {
font-size: 1.2rem;
2023-03-05 14:35:00 +01:00
height: 100;
2023-03-05 02:06:45 +01:00
}
.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;
}
}