-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
76 lines (61 loc) · 1.25 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
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>MLBB Skin Script - Mioscape Collection</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
transition: background-color 0.3s ease;
}
h1 {
color: #0366d6;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
background-color: #fff;
border-radius: 4px;
padding: 10px;
}
a {
color: #0366d6;
text-decoration: none;
}
.dark-mode {
background-color: #222;
color: #fff;
}
.request-button {
margin-bottom: 10px;
}
@media (max-width: 600px) {
h1 {
font-size: 24px;
}
li {
font-size: 14px;
padding: 8px;
}
}
@media (max-width: 400px) {
h1 {
font-size: 20px;
}
li {
font-size: 12px;
padding: 6px;
}
}
</style>
</head>
<body>
<h1>MLBB Skin Script - Mioscape Collection</h1>
<ul id="releaseList"></ul>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</body>
</html>