-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (93 loc) · 3.27 KB
/
index.html
File metadata and controls
102 lines (93 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daechler's Links</title>
<link rel="icon" href="redpandalogo2.png" type="image/png">
<style>
body {
font-family: 'Courier New', Courier, monospace;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 600px;
flex-direction: column;
text-align: center;
}
.container {
padding: 20px;
border: 1px solid #fff;
width: 100%;
}
.profile-section {
margin-bottom: 20px;
}
.profile-pic {
width: 100px;
height: 100px;
border-radius: 50%;
background-image: url('redpandalogo2.png');
background-size: cover;
background-position: center;
margin: 0 auto 20px auto;
border: 2px solid #fff;
}
.title {
font-size: 28px;
font-weight: bold;
margin-bottom: 10px;
}
.quote {
font-style: italic;
font-size: 16px;
margin-bottom: 20px;
}
.link-item {
color: #fff;
text-decoration: none;
font-weight: bold;
padding: 10px;
border: 1px solid #fff;
margin-bottom: 10px;
display: block;
transition: background-color 0.3s, color 0.3s;
}
.link-item:hover {
background-color: #fff;
color: #000;
}
</style>
<script defer data-domain="daechler.net" src="https://analytics.daechler.net/js/script.file-downloads.hash.outbound-links.js"></script>
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="profile-section">
<div class="profile-pic" title="Profile picture by Mathias Appel, CC0 License."></div>
<div class="title">Daechler</div>
<div class="quote">"Computers are like air conditioners. They stop working when you open Windows."</div>
</div>
<a href="https://daechler.net/discord/" class="link-item">Discord</a>
<a href="https://docs.daechler.net/" class="link-item">Tech-Blog</a>
<a href="https://github.com/Daechler/" class="link-item">GitHub</a>
<a href="https://steamcommunity.com/id/daechler/" class="link-item">Steam</a>
<a href="https://socialclub.rockstargames.com/member/Dachler" class="link-item">Rockstar Games Social Club</a>
<a href="https://truckersmp.com/user/2689788" class="link-item">TruckersMP</a>
<a href="https://www.youtube.com/Daechler?sub_confirmation=1" class="link-item">YouTube (inactive)</a>
<a href="https://www.twitch.tv/daechler" class="link-item">Twitch (inactive)</a>
</div>
</div>
</body>
</html>