-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (89 loc) · 1.52 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
body {
padding: 0;
text-align: center;
display: flex;
flex-direction: row;
justify-content: space-around;
background-image: url("images/bg-html.jpg");
}
.game-intro {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
align-content: stretch;
padding: 0% 10%;
width: 50vw;
}
h1 {
margin-top: 50px;
margin-bottom: 0;
color: #ebb02c;
font-family: "Faster One", cursive;
font-size: 90px;
text-shadow: black;
}
.run {
margin-top: 10px;
}
.instructions {
display: flex;
flex-direction: row;
align-items: center;
}
.paragraph {
color: white;
margin: 0;
text-align: center;
font-weight: 900;
font-size: 18px;
font-family: "Verdana";
}
.image-logo {
width: 230px;
height: 210px;
}
.logo-img {
width: 350px;
}
#start-button {
width: 280px;
height: 100px;
margin-bottom: 30px;
margin-top: 30px;
}
#game-area {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
align-content: stretch;
float: left;
padding: 20px 0px;
}
.key {
width: 190px;
height: 100px;
}
canvas {
margin-top: 50px;
background-color: black;
}
@media (max-width: 1056px) {
body {
padding: 0;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-around;
background-image: url("images/bg-html.jpg");
}
.instructions {
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-around;
}
}