43 lines
495 B
SCSS
43 lines
495 B
SCSS
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 2rem 30%;
|
|
}
|
|
|
|
.content {
|
|
@media (max-width: 690px) {
|
|
margin: 2rem 2rem;
|
|
}
|
|
.pgpwrap {
|
|
word-break: break-all;
|
|
}
|
|
}
|
|
|
|
.contact {
|
|
h1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
code {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
position: relative;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
li::before {
|
|
content: '•';
|
|
position: absolute;
|
|
left: 0;
|
|
color:white;
|
|
}
|
|
}
|
|
|