ppip/chrome/assets/css/crossOrigin.css
Victor Westerlund 4df2b40ba7 Initial commit
2022-08-04 02:51:10 +02:00

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 ";
}
}