-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (84 loc) · 1.31 KB
/
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* CSS files add styling rules to your content */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
background-color: black;
color: white;
}
h1 {
font-style: italic;
text-decoration: underline; /* https://www.w3schools.com/cssref/pr_text_text-decoration.asp*/
font-family: verdana, arial, sans-serif;
color: #00000;
}
button {
padding: 15px;
border-radius: 15px;
}
#noteSection {
height: 80px;
}
#timeLimit {
height: 80px;
}
#gameButtonArea > button {
width:200px;
height:200px;
margin:2px;
}
.hidden {
display: none;
}
#btn1 {
background: lightgreen;
}
#btn1:active, #btn1.lit {
background:green;
}
#btn2 {
background: lightblue;
}
#btn2:active, #btn2.lit {
background: blue;
}
#btn3 {
background: pink;
}
#btn3:active, #btn3.lit {
background: red;
}
#btn4 {
background: lightyellow;
}
#btn4:active, #btn4.lit {
background: yellow;
}
#btn5 {
background: mediumorchid;
}
#btn5:active, #btn5.lit {
background: purple
}
#btn6 {
background: sandybrown;
}
#btn6:active, #btn6.lit {
background: saddlebrown;
}
#btn7 {
background: snow;
}
#btn7:active, #btn7.lit {
background: lightslategray;
}
#btn8 {
background: grey;
}
#btn8:active, #btn8.lit {
background: black;
}
#textInput {
height: 15px;
position: absolute;
background-color: #ddd;
}