-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (127 loc) · 2.26 KB
/
Copy pathstyle.css
File metadata and controls
144 lines (127 loc) · 2.26 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* 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 {
background-color: slategrey;
color: white;
margin: 2em;
font-family: helvetica, arial, serif;
line-height: 1.5;
}
h1{
font-family: verdana, arial, serif;
}
button{
padding: 15px;
width:100px;
border-radius: 20px;
font-size:15px;
font-family:serif;
font-weight:bold;
}
.hidden {
display: none;
}
#startBtn{
background: Lavender;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#stopBtn{
background:DarkOrange;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#strikes{
display:inline;
float:right;
font-family:serif;
font-size:20px;
font-weight:bold;
color:PaleGoldenRod;
}
#Timer{
font-family:serif;
font-size:15px;
font-weight:bold;
color:PaleGoldenRod;
}
#gameButtonArea > button {
width:200px;
height:200px;
margin:3px;
}
#button1 {
background: lightgreen;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button1:active, #button1.lit{
background:green;
}
#button2 {
background: lightblue;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button2:active, #button2.lit {
background:blue;
}
#button3 {
background: pink;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button3:active, #button3.lit {
background:red;
}
#button4 {
background: lightyellow;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button4:active, #button4.lit {
background:yellow;
}
#button5 {
background: BurlyWood;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button5:active, #button5.lit {
background:brown;
}
#button6 {
background: DarkOrchid;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button6:active, #button6.lit {
background:DarkMagenta;
}
#button7 {
background: hotpink;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button7:active, #button7.lit {
background:deeppink;
}
#button8 {
background: Turquoise;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button8:active, #button8.lit {
background:Teal;
}
#button9 {
background: DarkOliveGreen;
box-shadow: 0px 0px 2px 2px rgb(0,0,0);
}
#button9:active, #button9.lit {
background:DarkGreen;
}
/* images and videos max out at full width */
img,
video {
height: auto;
max-width: 100%;
}