-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
91 lines (76 loc) · 1.38 KB
/
main.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
body {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
background: #0E0E0E;
color: #fff;
font-weight: 400;
font-family: "Nunito", sans-serif;
}
* {
box-sizing: border-box;
}
#text-wrapper {
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
width: 100vw;
}
#text-wrapper > img {
margin-right: 16px;
width: 64px;
height: 64px;
}
body > * {
position: relative;
width: 100%;
}
h1 {
text-align: center;
}
#ios-install-prompt {
position: fixed;
bottom: 0;
padding: 25px;
background: #fff;
color: #0E0E0E;
display: none;
flex-wrap: nowrap;
align-items: flex-start;
justify-content: start;
}
#ios-install-prompt > a {
width: 100%;
background: #fe71dc;
padding: 10px;
margin-top: 10px;
border-radius: 10px;
float: left;
display: block;
text-align: center;
color: #0e0e0e;
text-decoration: none;
}
#ios-install-prompt > span {
display: block;
}
@media screen and (max-width: 1280px) {
.logo-icon {
width: 32px;
height: 32px;
border-radius: 32px;
font-size: 16px;
}
.logo-icon::after {
width: calc(100% - 3px);
}
h1 {
font-size: 24px;
}
}