-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
168 lines (151 loc) · 3.57 KB
/
style.css
File metadata and controls
168 lines (151 loc) · 3.57 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
body {
min-height: 100vh;
margin: 0;
font-family: 'Inter', Arial, sans-serif;
color: #fff;
/* Animated gradient background */
background: linear-gradient(120deg, #4100F5, #FF8FDA, #32FE6B, #CEF564, #4100F5);
background-size: 300% 300%;
animation: gradientMove 12s ease-in-out infinite alternate;
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
.center-wrap {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.main-card {
background: rgba(24, 24, 40, 0.75);
border-radius: 32px;
box-shadow: 0 8px 48px 0 rgba(55,0,255,0.18), 0 1.5px 12px 0 #32FE6B33;
padding: 48px 38px 38px 38px;
display: flex;
flex-direction: column;
align-items: center;
max-width: 420px;
width: 100%;
backdrop-filter: blur(8px);
border: 2px solid rgba(255,255,255,0.08);
animation: fadein 1.2s;
}
@keyframes fadein {
from { opacity: 0; transform: translateY(40px);}
to { opacity: 1; transform: translateY(0);}
}
.main-logo {
width: 120px;
height: auto;
margin-bottom: 12px;
display: block;
filter: drop-shadow(0 2px 12px #4100F5aa);
}
.main-title {
color: #fff;
text-align: center;
font-size: 2.2rem;
margin-bottom: 28px;
font-weight: 800;
letter-spacing: 2px;
text-shadow: 0 2px 12px #32FE6B44;
}
.fluent-info {
max-width: 420px;
margin: 0 auto 32px auto;
background: rgba(255,255,255,0.08);
border-radius: 18px;
padding: 18px 24px 12px 24px;
color: #fff;
font-size: 1.08rem;
text-align: center;
box-shadow: 0 2px 12px 0 rgba(55,0,255,0.08);
border: 1.5px solid rgba(255,255,255,0.10);
position: relative;
overflow: hidden;
}
.info-icon {
font-size: 2.1rem;
margin-bottom: 6px;
animation: icon-bounce 2.5s infinite;
}
@keyframes icon-bounce {
0%, 100% { transform: translateY(0);}
50% { transform: translateY(-8px);}
}
.fluent-highlight {
color: #FF8FDA;
font-weight: 700;
letter-spacing: 1px;
font-size: 1.08em;
}
.info-keyword {
color: #32FE6B;
font-weight: 600;
letter-spacing: 0.5px;
}
.info-cta {
display: block;
margin-top: 10px;
color: #FECD07;
font-weight: 700;
font-size: 1.1em;
letter-spacing: 1px;
text-shadow: 0 2px 8px #4100F544;
}
.menu {
display: flex;
flex-direction: column;
align-items: center;
gap: 22px;
margin-top: 18px;
}
.menu-btn {
background: linear-gradient(90deg, #32FE6B 0%, #4100F5 100%);
color: #fff;
font-size: 1.3rem;
font-weight: 700;
padding: 18px 60px;
border-radius: 16px;
text-decoration: none;
margin: 0 0 8px 0;
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
box-shadow: 0 2px 12px 0 rgba(55,0,255,0.10);
text-align: center;
border: none;
outline: none;
position: relative;
overflow: hidden;
}
.menu-btn:hover {
background: linear-gradient(90deg, #FF8FDA 0%, #32FE6B 100%);
transform: scale(1.05);
box-shadow: 0 4px 24px 0 rgba(50,254,107,0.18);
}
.twitter-nick {
position: fixed;
top: 24px;
left: 24px;
display: flex;
align-items: center;
background: rgba(0,0,0,0.18);
padding: 6px 14px 6px 6px;
border-radius: 16px;
z-index: 100;
box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.twitter-icon {
width: 28px;
height: 28px;
margin-right: 8px;
display: block;
object-fit: contain;
}
.twitter-handle {
color: #fff;
font-size: 1.1rem;
font-weight: 600;
letter-spacing: 1px;
}