mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-14 03:23:41 +02:00
38 lines
No EOL
545 B
CSS
38 lines
No EOL
545 B
CSS
html,
|
|
body {
|
|
height: 100%;
|
|
margin: 0;
|
|
background-color: blue;
|
|
display: grid;
|
|
align-content: center;
|
|
justify-content: center;
|
|
user-select: none;
|
|
overflow: hidden;
|
|
}
|
|
|
|
img {
|
|
width: clamp(20px, 50vh, 80vw);
|
|
image-rendering: pixelated;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#pattern {
|
|
position: fixed;
|
|
inset: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
}
|
|
|
|
#pattern p {
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#pattern p span {
|
|
font-size: clamp(10px, 4vh, 10vw);
|
|
font-family: monospace;
|
|
font-weight: bold;
|
|
color: black;
|
|
} |