-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcredits.html
120 lines (103 loc) · 5.18 KB
/
credits.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
<html data-theme="blob">
<head>
<title>credits | scottnewman.xyz</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css"/>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<link rel="icon" href="https://avatars.githubusercontent.com/u/87974560?v=4">
<style>
body {
background: linear-gradient(91deg, #ff0000, #0005ff);
background-size: 400% 400%;
-webkit-animation: AnimationName 8s ease infinite;
-moz-animation: AnimationName 8s ease infinite;
animation: AnimationName 8s ease infinite;
}
@-webkit-keyframes AnimationName {
0% {
background-position: 4% 0%
}
50% {
background-position: 97% 100%
}
100% {
background-position: 4% 0%
}
}
@-moz-keyframes AnimationName {
0% {
background-position: 4% 0%
}
50% {
background-position: 97% 100%
}
100% {
background-position: 4% 0%
}
}
@keyframes AnimationName {
0% {
background-position: 4% 0%
}
50% {
background-position: 97% 100%
}
100% {
background-position: 4% 0%
}
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-center bg-base-100">
<div class="flex-1">
<div tabindex="0" role="button" class="btn btn-ghost btn-disabled btn-circle avatar">
<div class="w-10 rounded-full">
<img alt="pfp" src="https://avatars.githubusercontent.com/u/87974560?v=4"/>
</div>
</div>
<h1 class="text-success text-xl join-item join-horizontal p-2">scottnewman.xyz</h1>
<div class="divider divider-horizontal"></div>
<h1 class="text-xl text-base-content join-horizontal">credits</h1>
</div>
<div role="tablist" class="tabs p-3">
<a role="tab" class="tab tab-active link-hover join-item join-horizontal" href="https://scottnewman.xyz/"><i class="fas fa-home" style="padding: 5px;"></i>Go back to front page.</a>
</div>
</nav>
</header>
<div class="card w-96 bg-base-300 flex-1 center shadow-xl text-base-content p-10px margin-auto" style="margin: auto; margin-top: 15px;">
<div class="card-body">
<h2 class="card-title">Special Thanks to:</h2>
<li class="text-lg">BBCIA (alex) - he motivates me to do choices</li>
</div>
</div>
<div class="card w-96 bg-base-300 flex-1 center shadow-xl text-base-content p-10px margin-auto" style="margin: auto; margin-top: 15px;">
<div class="card-body">
<h2 class="card-title">This wasn't possible without the help of:</h2>
<li class="text-lg">nano - for helping me choose the right tools.</li>
<li class="text-lg">dmat43 - for fixing my website using grids</li>
<li>Github, Github Pages and Namecheap. - they do their magic</li>
</div>
</div>
<div class="card w-96 bg-base-300 flex-1 center shadow-xl text-base-content p-10px margin-auto" style="margin: auto; margin-top: 15px;">
<div class="card-body">
<h2 class="card-title">And thanks to you, dear traveller!</h2>
</div>
</div>
<footer class="footer absolute bottom-0 p-4 bg-base-100 text-base-content text-xs bg-opacity-1 margin-auto">
<aside>
<h4>Copyleft scottnewman.xyz 2024 - all lefts unreserved</h4>
<div class="join grid grid-flow-col gap-4">
<a class="join-item join-horizontal link link-hover">sign your life away!</a>
<a class="join-item join-horizontal link" href="https://github.com/ScottN13/ScottN13.github.io">github repo</a>
<div class="join-item join-horizontal divider divider-horizontal"></div>
<a class="join-item join-horizontal link" href="www.youtube.com/@scottnewmanfm">youtube</a>
<a class="join-item join-horizontal link" href="https://discord.gg/Ht5zzZ4Teq">discord</a>
<a class="join-item join-horizontal link" href="https://twitter.com/scotttynewman">twitter/X</a>
<a class="join-item join-horizontal link" href="https://www.reddit.com/user/Crazyman-X/">reddit</a>
</div>
</aside>
</footer>
</body>
</html>