This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playstation.html
119 lines (110 loc) · 3.17 KB
/
playstation.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mwa's portfoilo - Playstation</title>
<link rel="icon" type="image/x-icon" href="https://files.catbox.moe/n70jkj.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="My portfolio - Psn: Dark234friends" />
<meta property="og:description" content="My playstation" />
<meta property="og:image" content="https://files.catbox.moe/n70jkj.png" />
<meta property="og:url" content="https://mwa.is-a.dev/playstation" />
<link href="https://fonts.cdnfonts.com/css/satoshi" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
background-image: url('https://files.catbox.moe/yafbz3.gif');
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Satoshi', Arial, sans-serif;
}
.info-box {
background-color: rgba(0, 0, 0, 0.5);
color: white;
backdrop-filter: blur(10px);
padding: 20px;
margin: 20px;
border-radius: 25px;
text-align: center;
font-family: Arial, sans-serif;
max-width: 100vw;
}
a:link,
a:visited{
color: #ffffff;
}
a:hover
a:active{
color: grey
}
.profile-img {
border-radius: 50%;
max-width: 100px;
}
.social-icons {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 20px;
max-width: 100vw;
}
.social-icons a {
display: inline-block;
margin: 0 5px;
width: 35px;
height: 35px;
overflow: hidden;
border-radius: 50%;
}
.social-icons img {
width: 100%;
height: 100%;
transition: transform 0.2s ease-in-out;
border-radius: 50%;
}
.social-icons img:hover {
transform: scale(0.9);
border: none;
}
.bot-button {
border-radius: 5px;
background-color: #ffffff;
color: rgb(0, 0, 0);
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="info-box">
<img src="/Some images/playstation.svg" alt="Playstaion icon" class="profile-img"><br>
<div>
<span id="playstation-id" style="font-size: 30px;">Dark234friends</span><br> <button class="bot-button" onclick="copyToClipboard('playstation-id')">Copy psn user</button>
<p style="font-size: 15px;">Click <a href="./">here</a> to go back</p>
<p>Since there are no profile pages on Psn you were redirected to this page. <br> <br></p>
</div>
</div>
</div>
</div>
<script>
function copyToClipboard(id) {
var copyText = document.getElementById(id).textContent;
navigator.clipboard.writeText(copyText).then(function() {
alert('Copied username: ' + copyText);
}, function(err) {
alert('Failed to copy text Please report this to mwa: ' + err);
});
}
</script>
</body>
</html>