37 lines
565 B
CSS
37 lines
565 B
CSS
|
.home {
|
||
|
font-family: 'Source Code Pro', monospace;
|
||
|
background: black;
|
||
|
color: white;
|
||
|
font-size: 1.2rem;
|
||
|
height: 100vh
|
||
|
max-height: -webkit-fill-available;
|
||
|
max-width: 100vw;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
.home section {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%) translateY(-50%);
|
||
|
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;
|
||
|
}
|
||
|
}
|