-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (82 loc) · 1.38 KB
/
style.css
File metadata and controls
107 lines (82 loc) · 1.38 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
/* a minimalist set of CSS resets */
/* default to border-box */
html {
box-sizing: border-box;
font-size: 16px;
}
h1 {
font-family: verdana, arial, sans-serif;
color: #C4C0C2;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
/* adjust typography defaults */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
background-color: slategrey;
color: white;
text-align: center;
background: url('https://cdn.glitch.global/40f3601c-5592-4e66-bb6a-7661349a4cd5/space.jpg?v=1650648054191');
color: #C4C0C2;
}
button{
padding: 10px;
border-radius: 10px;
}
table {
width: 100%;
}
.hidden {
display: none;
}
#gameButtonArea > button {
width:200px;
height:200px;
margin:2px;
}
#button1 {
background: lightyellow;
}
#button1:active, #button1.lit {
background: yellow;
}
#button2 {
background: lightblue;
}
#button2:active, #button2.lit {
background:blue;
}
#button3 {
background: lightgreen;
}
#button3:active, #button3.lit {
background:green;
}
#button4 {
background: lightpink;
}
#button4:active, #button4.lit {
background: #EB0091;
}
#button5 {
background: #EBA0EB;
}
#button5:active, #button5.lit {
background: #DA00EB;
}
#button6 {
background: #EB6463;
}
#button6:active, #button6.lit {
background:red;
}
/* images and videos max out at full width */
img,
video {
height: auto;
max-width: 100%;
}