-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (49 loc) · 823 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
/* CSS files add styling rules to your content */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
background-color: #BDE5EE;
color: black;
}
h1 {
/* font-style: italic; */
color: #373fff;
font-family: verdana, arial, sans-serif;
}
button {
padding: 15px;
border-radius: 17px;
}
/* Button Colors */
#button1 {
background: #F8963E;
}
#button2 {
background: #8DF097;
}
#button3 {
background: #AA67F0;
}
#button4 {
background: #F83E83;
}
#button1:active, #button1.lit {
background: #BF7330;
}
#button2:active, #button2.lit {
background: #74C47C;
}
#button3:active, #button3.lit {
background: #7A49AB;
}
#button4:active, #button4.lit {
background: #C23066;
}
#gameButtonArea > button {
width: 200px;
height: 200px;
margin: 2px;
}
.hidden {
display: none;
}