-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (88 loc) · 1.79 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
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
@font-face {
font-family: "MiSans";
src: url("./fonts/MiSans-Regular.subset.ttf");
}
@font-face {
font-family: "MiSans";
src: url("./fonts/MiSans-Bold.subset.ttf");
font-weight: bold;
}
body {
@font-face {
font-family: "MiSans";
src: url("./fonts/MiSans-Regular.subset.ttf") url("./fonts/MiSans-Bold.subset.ttf");
}
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
font-family: "MiSans";
background-size: cover;
background-position: center;
min-height: 100vh;
background-repeat: no-repeat;
}
b {
color: crimson;
}
span {
font-size: large;
}
.container {
margin-top: -24px;
opacity: 0;
width: 400px;
height: auto;
padding: 36px;
background-color: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(12px);
border-radius: 24px;
box-shadow: 0 0 48px rgba(0, 0, 0, 0.5);
transition: opacity 1s cubic-bezier(0.51, 0.01, 0, 1);
}
.container.visible {
opacity: 1;
}
.button-container {
display: flex;
justify-content: flex-end;
}
#greeting {
font-weight: bold;
font-size: xx-large;
}
#redirect {
margin-top: 36px;
color: white;
background-color: #0fa7d9;
border-radius: 24px;
border: none;
padding: 12px;
transition: opacity 0.2s ease-in-out;
}
#redirect:hover {
opacity: 0.75;
cursor: pointer;
}
#footer {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
mask-image: linear-gradient(to bottom,
rgba(0, 0, 0, 0) 10%,
rgba(0, 0, 0, 1) 90%);
-webkit-mask-image: -webkit-linear-gradient(to bottom,
rgba(0, 0, 0, 0) 10%,
rgba(0, 0, 0, 1) 90%);
height: 100px;
opacity: 1;
color: rgba(255, 255, 255, 0.76);
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
font-size: small;
padding: 3px;
backdrop-filter: blur(12px);
}