-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (71 loc) · 1.18 KB
/
styles.css
File metadata and controls
85 lines (71 loc) · 1.18 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
/*Reset html styles*/
html,
body,
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Lucida Sans', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
background-color: rgb(0, 0, 69);
color: white;
}
canvas {
min-height: 200px;
flex-grow: 1;
}
footer {
margin: 1rem 0;
font-size: 1rem;
position: absolute;
bottom: 0;
width: 100%;
left: 50%;
transform: translateX(-50%);
}
a{
text-decoration: none;
}
img {
width: 30px;
}
#user-device {
margin-top: 1rem;
}
.button {
width: 50px;
height: 50px;
}
.buttons {
display: flex;
color: white;
place-content: center;
justify-content: space-around;
}
.up,.left, .right, .down {
display: flex;
align-items: center;
justify-content: center;
background-color: lime;
color: black;
}
.up {
margin: 0 auto .5rem;
}
.start {
position: absolute;
background: linear-gradient(black, blue, black);
width: 100vw;
height: 100vh;
top: 0;
inset: 0;
display: grid;
font-size: 3rem;
place-content: center;
text-align: center;
}