website/sass/content.scss

43 lines
495 B
SCSS
Raw Normal View History

2023-06-17 15:58:42 +02:00
.content {
display: flex;
flex-direction: column;
2024-10-14 16:52:45 +02:00
margin: 2rem 30%;
2023-06-17 15:58:42 +02:00
}
2023-09-20 17:03:40 +02:00
.content {
@media (max-width: 690px) {
margin: 2rem 2rem;
}
.pgpwrap {
word-break: break-all;
}
}
.contact {
h1 {
margin-bottom: 1rem;
}
}
2024-10-14 16:52:45 +02:00
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;
}
}