Filip Rojek
e8ce3f9b75
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 17s
36 lines
381 B
SCSS
36 lines
381 B
SCSS
.content {
|
|
margin-block: auto;
|
|
}
|
|
.home {
|
|
margin-top: 5rem;
|
|
font-size: 1.2rem;
|
|
padding: 0 5%;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|