-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (50 loc) · 1023 Bytes
/
styles.css
File metadata and controls
57 lines (50 loc) · 1023 Bytes
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
@import url('https://fonts.googleapis.com/css?family=Asap:400,500,700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
.grad{
background-image: linear-gradient(#0a0a0a, black);
}
header {
border: 3px solid white;
border-radius: 4px;
background: Black;
padding: 20px;
}
hr {
display: block;
color: white;
margin-top: 10px;
margin-bottom: 10px;
margin-left: auto;
margin-right: auto;
border-style: solid;
border-width: 10px;
}
header > h1 {
color: white;
font-size: 40px;
text-align: center;
font-family: Asap, sans-serif;
}
#gameCanvas {
padding-left: 0;
padding-right: 0;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
display: block;
border: 3px solid white;
border-radius: 4px;
}