-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
111 lines (84 loc) · 1.73 KB
/
index.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
105
106
107
108
109
110
111
#mod-name {
margin-bottom: 0px;
}
#mod-version {
margin-top: 0px;
margin-bottom: 128px;
}
#download-div {
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: center;
font-family: "Puffy";
}
#download-div .button {
margin-left: 16px;
margin-right: 16px;
min-height: 64px;
min-width: 256px;
}
#download-button {
color: var(--extreme-color);
}
#download-container {
margin: 64px;
margin-left: auto;
margin-right: auto;
max-width: 1080px;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: center;
font-family: "Puffy";
}
#download-container span:not(#download-description) {
margin-left: 8px;
margin-right: 8px;
margin-top: auto;
margin-bottom: auto;
font-family: "Puffy";
color: var(--strong-color);
}
#download-bar {
width: 100%;
height: 32px;
background-color: var(--mid-color);
border-radius: 32px;
}
#download-completion {
height: 100%;
width: 75%;
background-color: var(--strong-color);
border-radius: 32px;
}
#download-description {
z-index: 10;
position: absolute;
color: var(--weak-color);
}
/* For mobile */
@media screen and (orientation: portrait) {
body {
font-size: 48px;
}
h1 {
color: var(--stronger-color);
font-family: "Puffy";
font-size: calc(15vw);
text-align: center;
}
#download-div {
flex-direction: column-reverse;
align-items: center;
}
#download-div .button {
margin-top: 16px;
margin-bottom: 16px;
min-height: 96px;
min-width: 70vw;
}
#download-bar {
height: 48px;
}
}