tunnel-racer/main.css

52 lines
742 B
CSS
Raw Permalink Normal View History

2022-01-30 10:45:49 +00:00
body {
margin: 0;
background-color: #000;
2022-01-31 12:26:35 +00:00
font-family: monospace;
2022-01-30 10:45:49 +00:00
overscroll-behavior: none;
2022-01-30 11:02:00 +00:00
font-size: xxx-large;
color: #fff;
text-shadow:
0.07em 0 black,
0 0.07em black,
-0.07em 0 black,
0 -0.07em black;
2022-01-30 10:45:49 +00:00
}
2022-01-31 12:26:35 +00:00
2022-01-30 10:45:49 +00:00
#start {
width: 50vw;
height: 20vh;
2022-01-31 12:26:35 +00:00
font-size: 15vh;
/* center button */
2022-01-30 10:45:49 +00:00
position: absolute;
top: 50vh;
left: 50vw;
transform: translate(-50%, -50%);
}
button {
cursor: pointer;
text-transform: uppercase;
}
#info {
position: absolute;
top: 0px;
width: 100%;
padding: 10px;
box-sizing: border-box;
text-align: center;
user-select: none;
pointer-events: none;
2022-01-31 12:26:35 +00:00
z-index: 1;
2022-01-30 10:45:49 +00:00
}
2022-02-01 16:48:16 +00:00
#version {
position: absolute;
bottom: 10px;
right: 10px;
2022-02-01 17:01:55 +00:00
font-size: x-small;
2022-02-01 16:48:16 +00:00
z-index: 1;
}