-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (60 loc) · 962 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
62
63
64
65
66
67
68
69
70
71
html, body {
height: 100%;
margin: 0;
padding: 0;
background-color: #222222;
}
body div div {
display:flex;
justify-content: center;
}
p, button{
color: #235a42;
font-size: 3em;
text-align: center;
}
#pointsBox {
font-size: 6em;
color: #235a42;
}
button {
padding: 1.5em;
border-radius: 1em;
background-color: inherit;
height: fit-content;
font-size: 1.5em;
border-style: solid;
border-color:#235a42;
outline:none;
}
button:active {
color:#388c67;
}
#game {
display:flex;
justify-content: center;
}
#game div{
align-items: center;
text-align: center;
display:flex;
justify-content: center;
margin: 50px;
flex-direction: column;
}
#footer {
position: fixed;
bottom: 50px;
left: 0;
right: 0;
width: 100%;
height: 40px;
margin: 0px;
padding: 0px;
line-height: 40px;
}
#footer > p, a{
text-align: center;
color: #235a42;
font-size: 1em;
}