-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (90 loc) · 1.49 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
108
109
110
111
112
113
/* a minimalist set of CSS resets */
/* default to border-box */
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
}
/* adjust typography defaults */
body {
margin: 1rem;
font-family: sans-serif;
line-height: 1.5;
background-color: #ffc4db;
color: #0091ab;
}
h1 {
font-family: Brush Script MT, arial, sans-serif;
color: #8254ff;
/*font-style: oblique;*/
}
p {
font-family: trebuchet ms, arial, ssans-serif;
}
button {
padding: 12px;
border-radius: 40px;
}
/* light-up boxes */
#gameButtonArea > button {
width: 150px;
height: 150px;
margin: 2px;
}
/* hide stop button */
.hidden {
display: none;
}
/* unclicked button properties */
#button1 {
background: lightgreen;
}
#button2 {
background: lightblue;
}
#button3 {
background: pink;
}
#button4 {
background: lightyellow;
}
#button5 {
background: #ffd182;
}
#button6 {
background: #d2b3ff;
}
/* clicked button properties */
#button1:active, #button1.lit {
background: green;
}
#button2:active, #button2.lit {
background: blue;
}
#button3:active, #button3.lit {
background: red;
}
#button4:active, #button4.lit {
background: yellow;
}
#button5:active, #button5.lit {
background: #ff7f0f;
}
#button6:active, #button6.lit {
background: #ba4aff;
}
/* images and videos max out at full width */
img,
video {
height: auto;
max-width: 100%;
}
#modeLevel, #inputPattern {
padding-bottom: 10px;
}
#textBoxes {
display: flex;
flex-direction: column;
}