-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_en.html
More file actions
96 lines (96 loc) · 2.98 KB
/
index_en.html
File metadata and controls
96 lines (96 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PluralityCN Static Web Directory</title>
<style>
@keyframes auroraBG {
0% { background-position: 0% 50%; }
25% { background-position: 100% 50%; }
50% { background-position: 0% 50%; }
75% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
body, html {
height: 100%;
margin: 0;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(120deg, #012939, #0290b0, #00cdac, #a1ffce, #f68084, #feada6, #012939);
background-size: 800% 800%;
animation: auroraBG 20s ease infinite;
font-family: Arial, sans-serif;
}
.container {
backdrop-filter: blur(10px);
background-color: rgba(255, 255, 255, 0.7);
padding: 20px;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: background-color 0.3s ease, box-shadow 0.5s ease, transform 0.5s ease;
cursor: pointer;
width: 80%; /* Adjust container width */
display: flex;
flex-direction: column;
align-items: center;
}
.card {
background-color: #fff;
margin-top: 20px;
padding: 15px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
display: flex;
width: 100%; /* Full width cards */
}
.left {
flex: 3;
}
.right {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
}
.right a {
text-decoration: none;
color: white;
background-color: #007BFF;
padding: 10px 20px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>PluralityCN Static Web Directory</h1>
<p>Welcome to the <b>PluralityCN Static Web Directory</b>, providing access to commonly used websites in the community.</p>
<div class="card">
<div class="left">
<h2>PluralityCN Official Website</h2>
<p>The official website of the Chinese plurality system community, featuring important content such as community announcements and event promotions.</p>
</div>
<div class="right">
<a href="https://www.pluralitycn.com" target="_blank">Visit Website</a>
</div>
</div>
<div class="card">
<div class="left">
<h2>PluralityCN Portal Website</h2>
<p>Our portal website where you can access various sites directly.</p>
</div>
<div class="right">
<a href="https://portal.pluralitycn.com" target="_blank">Visit Website</a>
</div>
</div>
<!-- More cards can be added as needed -->
</div>
<footer>
<p>© 2024 <a href="https://www.pluralitycn.com">PluralityCN</a></p>
</footer>
</body>
</html>