-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
69 lines (58 loc) · 840 Bytes
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Press Start 2P', cursive;
}
html,
body {
height: 100vh;
width: 100vw;
}
body {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
margin: 20px 0px;
}
header {
display: flex;
align-items: center;
}
header span {
font-size: 50px;
margin-right: 20px;
}
#score-container {
margin: 10px 0px;
}
#controls {
margin: 10px 0px;
}
#controls button {
background: red;
color: #eeeeee;
padding: 10px;
border: 0;
cursor: pointer;
}
#controls input {
padding: 10px;
border: 2px solid red;
width: 100px;
}
#aim-trainer {
width: 80%;
height: 80%;
border: 2px solid red;
position: relative;
background: #efefef;
}
.target {
border-radius: 50%;
background: red;
position: absolute;
cursor: pointer;
}