-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlinks.html
More file actions
119 lines (104 loc) · 2.51 KB
/
links.html
File metadata and controls
119 lines (104 loc) · 2.51 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
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SSD Links</title>
</head>
<body>
<div class="topnav">
<a href="https://seesharpeden.com">Home</a>
<a href="https://seesharpeden.com/repos">Repos</a>
<a href="https://seesharpeden.com/links" class="active">Socials</a>
</div>
<!-- Profile picture-->
<img src="https://raw.githubusercontent.com/SeeSharpeDen/website/main/assets/NVha8dJ4.jpg" alt="profile picture" class="profile-picture">
<hr>
<!-- Links--> <div class="linkify">
<a href="https://seesharpeden.com" target="_blank" class="links">WEBSITE</a>
<a href="https://discord.gg/82dEsZsvNf" target="_blank" class="links">DISCORD</a>
<a href="https://github.com/seesharpeden" target="_blank" class="links">GITHUB</a>
<a href="https://blog.seesharpeden.com" target="_blank" class="links">BLOG</a>
</div>
<div class="bottom-text">seesharpeden.com</div>
<style>
body {
background: #212121;
color: #ffb300;
}
hr{
width: 25%;
margin-top: 50px;
margin-bottom: 75px;
border-radius: 100%;
border-color: #ffb300;
}
img {
border-radius: 50%;
}
.profile-picture {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 10%;
height: auto;
max-width: 100px;
}
.linkify {
font-family: Ubuntu;
font-size: 15px;
letter-spacing: 2px;
}
.linkify a {
text-align: center;
margin-top: 20px;
padding: 20px;
border: 1px solid white;
border-width: 2px;
width: 290px;
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 40px;
}
.linkify .links{
text-decoration: none;
color: white;
transition: color 1s;
}
.bottom-text {
text-align: center;
margin-top: 40px;
font-size: 20px;
font-weight: bold;
font-family: Ubuntu;
}
a:hover {
color: #ffb300;
background: #212121;
border-color: #ffb300;
}
.topnav {
overflow: hidden;
font-family: Ubuntu, Verdana;
background-color: #212121;
}
.topnav a {
float: left;
color: #f8b300;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ffffff;
color: #212121;
}
.topnav a.active {
background-color: #f8b300;
color: #ffffff;
}
</style>
</body>
</html>