mirror of
https://codeberg.org/vlw/ppip.git
synced 2025-09-14 10:43:42 +02:00
28 lines
No EOL
399 B
CSS
Executable file
28 lines
No EOL
399 B
CSS
Executable file
#interact {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid;
|
|
justify-items: center;
|
|
align-items: center;
|
|
background-color: rgba(0,0,0,.3);
|
|
cursor: pointer;
|
|
}
|
|
|
|
#interact h1 {
|
|
color: white;
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
#interact h1::before {
|
|
content: "Click ";
|
|
}
|
|
|
|
@media (pointer: coarse) {
|
|
#interact h1::before {
|
|
content: "Tap ";
|
|
}
|
|
} |