-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.27 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<style>
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(135deg, #f0f4f8, #d9e4f5);
}
body, body * {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
backdrop-filter: blur(15px);
background: rgba(255, 255, 255, 0.8);
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.123);
padding: 4rem;
margin: 20px;
width: 90%;
max-width: 600px;
transition: box-shadow 0.3s;
}
section:hover {
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
h2 {
text-align: center;
color: #333;
font-size: 2rem;
margin-bottom: 1.5rem;
}
a {
display: block;
text-decoration: none;
color: #007bff;
margin-bottom: 1rem;
font-size: 1.2rem;
transition: color 0.3s, transform 0.3s;
}
a:hover {
color: #0056b3;
transform: translateY(-2px);
}
</style>
<section>
<h2>
Plugins Description List
</h2>
<a href="cool-timeline-pro/index.html">Cool Timeline Pro</a>
<a href="crypto-widget-pro/index.html">Crypto Widget Pro</a>
<a href="coin-market-cap/index.html">Coin Market Cap</a>
<a href="crypto-exchange-list-pro/index.html">Crypto Exchange List Pro</a>
<a href="events-shortcode-pro/index.html">Events Shortcode Pro</a>
</section>
</body>
</html>