-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsocials.html
89 lines (88 loc) · 2.98 KB
/
socials.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
<!-- Socials Page -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>socials</title>
<style>
body {
background: black;
color: #00ff00;
font-family: 'Courier New', Courier, monospace;
text-align: center;
padding: 2em;
}
h1 {
font-size: 3em;
text-shadow: 0 0 8px #00ff00;
}
/* Style the link button */
.link-button {
display: inline-block;
padding: 0.7em 1.5em;
background: #00ff00;
color: black;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s, color 0.3s;
}
/* Change button appearance on hover */
.link-button:hover {
background: black;
color: #00ff00;
border: 2px solid #00ff00;
}
.back-button {
display: inline-block;
padding: 0.7em 2em;
background: transparent;
color: #00ff00;
border: 2px solid #00ff00;
text-decoration: none;
font-size: 1.2em;
font-weight: bold;
border-radius: 8px;
transition: background 0.3s, color 0.3s;
text-shadow: 0 0 8px #00ff00; /* Glow effect applied only to the home button */
}
.back-button:hover, .about-button:hover {
background: #00ff00;
color: black;
}
.back-button {
position: absolute; /* Position the home button absolutely */
top: 20px;
left: 20px; /* Distance from the left */
}
.about-button {
display: inline-block;
padding: 0.7em 2em;
background: transparent;
color: #00ff00;
border: 2px solid #00ff00;
text-decoration: none;
font-size: 1.2em;
font-weight: bold;
border-radius: 8px;
transition: background 0.3s, color 0.3s;
/* No text-shadow here to remove the glow from the socials button */
}
.about-button {
position: absolute; /* Position the socials button absolutely */
top: 20px;
left: calc(20px + 160px); /* Move the button 160px to the right of the home button */
}
</style>
</head>
<body>
<h1>socials</h1>
<p>you can find me anywhere under 'sheataru' but here are the buttons:</p>
<a href="https://www.twitch.tv/sheataru" class="link-button">twitch</a>
<a href="https://www.youtube.com/@sheataru" class="link-button">youtube</a>
<a href="https://www.youtube.com/@sheaaLIVE" class="link-button">2nd youtube</a>
<a href="/" class="back-button">home</a>
<a href="about.html" class="about-button">about</a>
</body>
</html>