36 lines
No EOL
538 B
CSS
36 lines
No EOL
538 B
CSS
body{
|
|
cursor:cell;
|
|
}
|
|
.cursor {
|
|
position: absolute;
|
|
background: black;
|
|
width: 5px;
|
|
height: 5px;
|
|
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;
|
|
}
|
|
|
|
.target{
|
|
position: absolute;
|
|
background: green;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 40px;
|
|
text-align: center;
|
|
} |