-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (65 loc) · 1.25 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
* {
font-family: Arial, Helvetica, sans-serif;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
color: #060803;
font-size: 20px;
background-color: #f6f9f1;
}
.game-ui {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background-color: #86b84d;
border-radius: 20px;
padding: 20px;
box-shadow: 10px 10px #060803;
width: 400px;
height: 500px;
}
.results {
display: flex;
flex: auto;
flex-direction: column;
justify-content: space-between;
align-items: center;
padding: 20px 20px;
}
.top {
display: flex;
flex-direction: column;
gap: 15px;
}
.score-count {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 15px;
}
.selections {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 15px;
}
.player-selection {
width: 100%;
display: flex;
justify-content: space-evenly;
}
button {
width: 100px;
height: 50px;
border: none;
border-radius: 20px;
background-color: #77bac9;
box-shadow: 5px 5px #060803;
margin: 20px 0px;
}