-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (77 loc) · 1.54 KB
/
Copy pathstyle.css
File metadata and controls
77 lines (77 loc) · 1.54 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
@font-face {
font-family: 'SpaceJunkXL';
src: url('media/spacejunkXL.ttf') format('truetype');
}
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(33,33,33);
color: whitesmoke;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
canvas {
background-color: rgba(255, 235, 205, 0.25);
margin: auto;
max-width: 100vw;
max-height: 100vh;
display: none;
}
#welcomeScreen {
font-family: 'SpaceJunkXL', Arial, Helvetica, sans-serif;
margin: auto;
height: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center;
background-color: rgba(0,0,0,0.2);
}
#welcomeScreen p {
margin: 40px;
font-size: 3rem;
}
.gasStation {
width: 360px;
}
#logo {
width: 180px;
margin-bottom: 64px;
border-bottom: 1px solid rgba(0,0,0,0);
}
#logo:hover {
border-bottom: 1px solid whitesmoke;
background-color: rgba(0,0,0,0.1);
}
#button {
font-family: 'SpaceJunkXL', Arial, Helvetica, sans-serif;
margin: auto;
padding-top: 16px;
height: 56px;
width: 180px;
font-size: 1.8rem;
background-color: darkblue;
color: whitesmoke;
border-radius: 4px;
}
@media only screen and (max-width: 768px){
body {
align-items: flex-start;
}
canvas {
max-height: 90vh;
margin: 0;
}
#welcomeScreen {
height: 90%;
margin: 0;
}
#welcomeScreen p {
margin: 20px;
font-size: 2.75rem;
}
}