mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-13 19:13:42 +02:00
31 lines
No EOL
442 B
CSS
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);
|
|
}
|
|
} |