-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 849 Bytes
/
style.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
body {
font-family: 'Open Sans', sans-serif;
color: #a8d6c1;
background-color: #123456;
}
#container {
display: flex;
flex-direction: column;
align-items: stretch;
}
h1 {
align-self: center;
text-decoration: underline;
}
.win {
background-color: #00ff0044;
}
.lose {
background-color: #ff000044;
}
#info {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
gap: 10px;
font-size: 24px;
}
#play-buttons {
display: flex;
justify-content: center;
gap: 50px;
background-color: #ffffff18;
}
button {
width: 100px;
height: 100px;
margin: 20px;
padding: 0;
}
#winner {
align-self: stretch;
padding: 20px;
text-align: center;
font-size: 36px;
font-weight: bold;
}
img {
width: 100px;
height: 100px;
}