-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (51 loc) · 942 Bytes
/
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
@font-face {
font-family: 'stacked';
src: url('assets/stacked-pixel.ttf');
}
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'stacked';
font-size: 60px;
}
body {
background-image: url("assets/html-background.jpg");
background-repeat: no-repeat;
background-size: cover;
}
h1 {
font-size: 100px;
}
li {
font-size: 0.5rem;
margin-bottom: 10px;
}
h2 {
font-size: 40px;
}
#game-div {
width: 100%;
display: flex;
justify-content: space-evenly;
align-content: center;
}
body {
margin: 0;
display: flex;
flex-direction: column;
/* This centers our sketch horizontally. */
justify-content: space-around;
/* This centers our sketch vertically. */
align-items: center;
}
button {
color: rgb(245, 99, 66);
font-family: stacked;
font-size: 100px;
background-color: transparent;
border: 1px solid rgb(245, 99, 66);
}
.orange {
color: #f56342;
}