-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (103 loc) · 2.72 KB
/
index.html
File metadata and controls
121 lines (103 loc) · 2.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
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>directory listing /</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 40px;
font-family: "Helvetica Neue", Arial, sans-serif;
background: #121212;
color: #e0e0e0;
line-height: 1.5;
}
.container {
max-width: 800px;
margin: 0 auto;
}
h1 {
font-size: 24px;
color: #ffffff;
margin-bottom: 30px;
font-weight: 500;
}
h1 a {
color: #bb86fc;
text-decoration: none;
}
h1 a:hover {
color: #ffffff;
}
.file-list {
list-style: none;
background: rgba(30, 30, 30, 0.5);
border-radius: 8px;
padding: 10px;
}
.file-list li {
margin-bottom: 2px;
}
.file-list li:last-child {
margin-bottom: 0;
}
.file-list a {
display: flex;
align-items: center;
padding: 12px 16px;
color: #e0e0e0;
text-decoration: none;
border-radius: 6px;
transition: all 0.2s ease;
}
.file-list a:hover {
background: rgba(187, 134, 252, 0.1);
color: #ffffff;
}
.file-icon {
width: 20px;
height: 20px;
margin-right: 12px;
flex-shrink: 0;
}
.icon-folder {
background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIuNSA1LjVWNi41QzIuNSA3LjA1IDIuOTUgNy41IDMuNSA3LjVIMTYuNUMxNy4wNSA3LjUgMTcuNSA3LjA1IDE3LjUgNi41VjMuNUMxNy41IDIuOTUgMTcuMDUgMi41IDE2LjUgMi41SDguNUw3LjUgMS41SDIuNUMyLjA1IDEuNSAxLjUgMS45NSAxLjUgMi41VjE2LjVDMS41IDE3LjA1IDEuOTUgMTcuNSAyLjUgMTcuNUgxNy41QzE4LjA1IDE3LjUgMTguNSAxNy4wNSAxOC41IDE2LjVWNy41QzE4LjUgNi45NSAxOC4wNSA2LjUgMTcuNSA2LjVIMy41QzIuOTUgNi41IDIuNSA2LjA1IDIuNSA1LjVaIiBmaWxsPSIjYmI4NmZjIi8+Cjwvc3ZnPgo=') no-repeat center;
}
.icon-file {
background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNSAxLjVIMTQuNUwxNy41IDQuNVYxNi41QzE3LjUgMTcuMDUgMTcuMDUgMTcuNSAxNi41IDE3LjVIMy41QzIuOTUgMTcuNSAyLjUgMTcuMDUgMi41IDE2LjVWMi41QzIuNSAxLjk1IDIuOTUgMS41IDMuNSAxLjVaIiBzdHJva2U9IiNlMGUwZTAiIHN0cm9rZS13aWR0aD0iMS41IiBmaWxsPSJub25lIi8+Cjwvc3ZnPgo=') no-repeat center;
}
.file-name {
font-weight: 500;
font-size: 14px;
}
@media (max-width: 768px) {
body {
padding: 20px;
}
h1 {
font-size: 20px;
margin-bottom: 20px;
}
.file-list a {
padding: 10px 12px;
}
.file-icon {
margin-right: 10px;
}
}
</style>
</head>
<body>
<div class="container">
<h1><a href="/">~</a> /</h1>
<ul class="file-list">
<li><a href="/thefiltertheyforgot"><div class="file-icon icon-folder"></div><span class="file-name">thefiltertheyforgot</span></a></li>
</ul>
</div>
</body>
</html>