forked from lynx-family/lynx-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
119 lines (104 loc) · 1.72 KB
/
App.css
File metadata and controls
119 lines (104 loc) · 1.72 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
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
112
113
114
115
116
117
118
119
:root {
background-color: #000;
--color-text: #fff;
}
.Background {
position: fixed;
background: radial-gradient(
71.43% 62.3% at 46.43% 36.43%,
rgba(18, 229, 229, 0) 15%,
rgba(239, 155, 255, 0.3) 56.35%,
#ff6448 100%
);
box-shadow: 0px 12.93px 28.74px 0px #ffd28db2 inset;
border-radius: 50%;
width: 200vw;
height: 200vw;
top: -60vw;
left: -14.27vw;
transform: rotate(15.25deg);
}
.App {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
text {
color: var(--color-text);
}
.Banner {
flex: 5;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 100;
}
.Logo {
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 8px;
}
.Logo--react {
width: 100px;
height: 100px;
animation: Logo--spin infinite 20s linear;
}
.Logo--lynx {
width: 100px;
height: 100px;
animation: Logo--shake infinite 0.5s ease;
}
@keyframes Logo--spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes Logo--shake {
0% {
transform: scale(1);
}
50% {
transform: scale(0.9);
}
100% {
transform: scale(1);
}
}
.Content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.Arrow {
width: 24px;
height: 24px;
}
.Title {
font-size: 36px;
font-weight: 700;
}
.Subtitle {
font-style: italic;
font-size: 22px;
font-weight: 600;
margin-bottom: 8px;
}
.Description {
font-size: 20px;
color: rgba(255, 255, 255, 0.85);
margin: 15rpx;
}
.Hint {
font-size: 12px;
margin: 5px;
color: rgba(255, 255, 255, 0.65);
}