-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
10.html
140 lines (133 loc) · 3.77 KB
/
10.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
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
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-adsense-account" content="ca-pub-8519859825719594">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List of Parts</title>
<style>
/* Default styles */
/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
/* Mobile styles */
header {
font-size: 16px;
padding: 10px;
}
main {
padding: 10px;
}
footer {
font-size: 14px;
padding: 10px;
}
}
/* Media query for desktop PCs */
@media only screen and (min-width: 601px) {
/* Desktop styles */
header {
font-size: 24px;
padding: 20px;
}
main {
max-width: 800px;
margin: 0 auto; /* Center content */
padding: 20px;
}
footer {
font-size: 18px;
padding: 20px;
}
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: url('2.jpg') no-repeat center center fixed;
background-size: cover;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
color: #fff;
margin-bottom: 30px;
}
.content {
width: 100%;
max-height: 80vh;
overflow-y: auto;
padding: 20px;
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
.button-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.link-item {
display: flex;
flex-direction: column;
background-color: #ff5252;
color: white;
padding: 20px;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
width: 100%;
max-width: 800px;
box-sizing: border-box;
margin-bottom: 10px;
overflow-wrap: break-word;
transition: transform 0.3s ease, background-color 0.3s ease;
}
.link-item:hover {
transform: scale(1.05);
background-color: #ff0000;
}
.copy-button {
background-color: white;
color: #ff5252;
border: 1px solid #ff5252;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease, color 0.3s ease;
}
.copy-button:hover {
background-color: #ff5252;
color: white;
}
</style>
<script>
function copyToClipboard(link) {
navigator.clipboard.writeText(link).then(() => {
alert('Link copied to clipboard');
}).catch(err => {
alert('Failed to copy link: ' + err);
});
}
</script>
</head>
<body>
<div class="content">
<h1>RESIDENT EVIL 6</h1>
<div class="button-container">
<!-- Part 1 -->
<div class="link-item">
<div style="word-wrap: break-word;">
RESIDENT EVIL 6 =
https://thefileslocker.net/wv4c0ldam3b2.html
</div>
<button class="copy-button" onclick="copyToClipboard('https://thefileslocker.net/wv4c0ldam3b2.html')">Copy</button>
</div>
</div>
</div>
</body>
</html>