-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (65 loc) · 1.35 KB
/
styles.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
70
71
72
73
74
75
76
body {
background-image: radial-gradient(circle at center center, rgb(10, 133, 202), rgb(23, 106, 192), rgb(35, 79, 183), rgb(48, 51, 173), rgb(60, 24, 163));
font-family: Arial, Helvetica, sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}
#engine {
display: flex;
flex-direction: column;
align-items: center;
}
.counter {
display: flex;
margin: 30px 30px 15px 30px;
}
.humanCount,
.aiCount {
font-size: 30px;
display: flex;
flex-direction: column;
align-items: center;
margin-left: 30px;
margin-right: 30px;
}
#reset {
cursor: grab;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: red;
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
display: flex;
align-items: center;
justify-content: center;
margin: 20px;
font-weight: 600;
font-size: 15px;
padding: 5px;
}
#choiceBtns {
display: flex;
}
#rockBtn,
#paprBtn,
#scissBtn {
display: flex;
background-color: white;
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
margin: 10px;
cursor: grab;
height: 60px;
width: 60px;
border-radius: 20px;
justify-content: center;
align-items: center;
padding: 40px;
font-weight: 900;
}
#finalResults {
height: 24px;
font-weight: 900;
}