24 lines
372 B
CSS
24 lines
372 B
CSS
|
.cursor {
|
||
|
position: absolute;
|
||
|
background: black;
|
||
|
width: 20px;
|
||
|
height: 20px;
|
||
|
border-radius: 10px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.cursor h1 {
|
||
|
position: relative;
|
||
|
text-align: center;
|
||
|
margin-top: 20px;
|
||
|
font-size: 1vw;
|
||
|
color: gray;
|
||
|
|
||
|
}
|
||
|
|
||
|
.scoreboard{
|
||
|
background: rgba(34,34,34,0.2);
|
||
|
position: absolute;
|
||
|
top: 0px;
|
||
|
right: 0px;
|
||
|
}
|