-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (62 loc) · 1.19 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
@font-face {font-family: PublicPixel; src: url('./assets/PublicPixel.ttf'); }
body {
background-color: rgb(0, 3, 44);
overflow: hidden;
font-family: PublicPixel;
image-rendering: pixelated;
user-select: none;
color: white;
text-align: center;
margin: 0;
}
#interface {
position: absolute;
top: 0;
left: 0;
z-index: 2;
width: 100%;
height: 100%;
}
.banner {
width: 600px;
max-width: 80%;
margin: 60px;
}
.titlebutton {
height:70px;
width: 280px;
margin: 10px;
border:0;
border-radius: 10px;
background-color: rgba(0, 0, 0, .5);
color: white;
cursor:pointer;
font-family: PublicPixel;
font-size: 20px;
border: 1px white solid;
}
.menu {
position: absolute;
top:50%;
left:50%;
transform: translateX(-50%) translateY(-50%);
background-color: rgba(0, 0, 0, .8);
border-radius: 50px;
z-index: 4;
padding: 50px;
font-size: 20px;
width: 400px;
}
#version-identifier {
position: absolute;
text-align:left;
font-weight: 100;
bottom: 5px;
left: 5px;
z-index: 5;
font-size: 10px;
color: white;
}
.trophy {
width:50%;
}