-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (65 loc) · 1.42 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
/******************************************************************************
START Glitch hello-app default styles
The styles in this section do some minimal CSS resets, set default fonts and
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
background-color: slategrey;
color: white;
}
h1{
font-family: verdana, ariel, sans-serif;
}
button{
padding: 15px;
border-radius: 15px;
}
#gameButtonArea > button {
width:200px;
height:200px;
margin:2px;
}
.hidden {
display: none;
}
#button1 {
background:lightgreen;
}
#button1:active, #button1.lit {
background:green;
}
#button2 {
background:lightblue;
}
#button2:active, #button2.lit {
background:blue;
}
#button3 {
background:pink;
}
#button3:active, #button3.lit {
background:red;
}
#button4 {
background:lightyellow;
}
#button4:active, #button4.lit {
background:yellow;
}
/* Page structure */
.wrapper {
min-height: var(--wrapper-height);
display: grid;
place-items: center;
margin: 0 1rem;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}