victorwesterlund.com/public/assets/css/index.css
Victor Westerlund 54da8f9be2
Add back-end core and "search" feature (#20)
Soft initial release of API core and "search" feature.
2021-11-03 11:10:50 +01:00

31 lines
No EOL
442 B
CSS

/* Victor Westerlund - www.victorwesterlund.com */
a {
font-weight: bold;
}
a::after {
content: " →";
}
main {
display: flex;
flex-direction: column;
gap: 30px;
font-size: 20px;
transform: translateY(0);
}
/* -- Media Queries -- */
@media (max-width: 300px) {
main {
text-align: center;
align-items: center;
}
}
@media print {
a::after {
content: ": " attr(href);
}
}