forked from LibreSpark/LibreTV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwatch.css
More file actions
128 lines (111 loc) · 2.39 KB
/
Copy pathwatch.css
File metadata and controls
128 lines (111 loc) · 2.39 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
/* 添加重定向页面的基本样式 */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0f1622;
color: white;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.redirect-container {
text-align: center;
max-width: 90%;
width: 380px;
padding: 2rem;
background-color: rgba(0, 0, 0, 0.3);
border-radius: 16px;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-container {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}
.logo-icon {
width: 40px;
height: 40px;
color: #00ccff;
margin-right: 10px;
}
.logo-text {
font-size: 2rem;
margin: 0;
background: linear-gradient(to right, #00ccff, #ff3c78);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.loading-animation {
display: inline-block;
width: 50px;
height: 50px;
border: 3px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
border-top-color: #00ccff;
animation: spin 1s linear infinite;
margin-bottom: 20px;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.redirect-message {
font-size: 1.2rem;
margin-bottom: 10px;
font-weight: 500;
}
#redirect-status {
font-size: 0.9rem;
color: #8599b2;
margin-bottom: 1.5rem;
height: 20px;
}
.redirect-hint {
font-size: 0.9rem;
color: #8599b2;
margin-top: 20px;
}
.redirect-hint a {
color: #00ccff;
text-decoration: none;
font-weight: 500;
transition: all 0.2s ease;
padding: 5px 10px;
border-radius: 4px;
background-color: rgba(0, 204, 255, 0.1);
}
.redirect-hint a:hover {
background-color: rgba(0, 204, 255, 0.2);
text-decoration: underline;
}
/* 移动端优化 */
@media (max-width: 480px) {
.redirect-container {
padding: 1.5rem;
width: 85%;
}
.logo-icon {
width: 30px;
height: 30px;
}
.logo-text {
font-size: 1.7rem;
}
.loading-animation {
width: 40px;
height: 40px;
margin-bottom: 15px;
}
.redirect-message {
font-size: 1rem;
}
#redirect-status {
font-size: 0.8rem;
}
}