-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
148 lines (133 loc) · 6.86 KB
/
index.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JSVDE0W9KL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JSVDE0W9KL');
</script>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" href="./files/logo.png">
<title>Bane // Home</title>
</head>
<body>
<div class="header">
<div class="logo">
<img class="logoImg" src="./files/logo.png" style="width:40px; height: 40px;">
<h1 style="line-height: 0.3;">Bane</h1>
<a href="./index.html">
<span class="linkSpan"></span>
</a>
</div>
<h4 class="NavBar">
<a id="secret" style="opacity: 0; margin-right: 10px;" href="./test.html">Test page</a>
<a id="contact" href="https://twitter.com/Jordy_3D">Twitter</a>
<a id="support" href="https://github.com/Jordy3D/">GitHub</a>
</h4>
</div>
<div class="crt">
<div class="scan"></div>
</div>
<div class="content">
<h1 class="separator-title">//About</h1>
<div class="section">
<div class="section-content">
<p>Welcome! This is a place for me to put some of my public-facing things!</p>
<p>Below you can see links to things that may be of interest to you if you found your way to my slice of the net.</p>
</div>
</div>
<h1 class="separatorTitle">//Content</h1>
<div class="objectListContainer">
<div class="column">
<div class="objectCard">
<div class="objectCardData" style="background-image: url(./files/css/images/LinkedDark.png); background-position: center; background-size: cover;">
<div class="objectCardFilter">
<div class="objectCardImageHolder">
<img loading="lazy" src="./files/css/images/LinkedDark.png "></img>
</div>
<div class="objectCardInfo">
<div class="objectCardHeader">
<h4 class="objectCardTitle">BaneCSS</h4>
</div>
<p>CSS by me, for all.<br>Usually an improvement over the original.</p>
<p>There's not much to say beyond that really, it's CSS styles for various sites.</p>
<a href="./banecss.html">
<span class="linkSpan"></span>
</a>
</div>
</div>
</div>
</div>
<div class="objectCard">
<div class="objectCardData" style="background-image: url(./files/projects/images/dmtbanner.jpg); background-position: 60% 0; background-size: inherit;">
<div class="objectCardFilter" style="backdrop-filter: brightness(0.25) blur(6px);">
<div class="objectCardImageHolder">
<img loading="lazy" src="./files/projects/images/dmtbanner.jpg" style="left: -20px"></img>
</div>
<div class="objectCardInfo">
<div class="objectCardHeader">
<h4 class="objectCardTitle">DM's Toolkit</h4>
</div>
<p>A minor toolkit of things for the budding DM without a playmat</p>
<a href="https://github.com/Jordy3D/DMs_Toolkit">
<span class="linkSpan"></span>
</a>
</div>
</div>
</div>
</div>
<div class="objectCard">
<div class="objectCardData" style="background-image: url(./files/defaultbg.jpg); background-position: 60% 0; background-size: inherit;">
<div class="objectCardFilter" style="backdrop-filter: brightness(0.25) blur(6px);">
<div class="objectCardImageHolder">
<img loading="lazy" src="./files/defaultbg.jpg" style="left: -20px"></img>
</div>
<div class="objectCardInfo">
<div class="objectCardHeader">
<h4 class="objectCardTitle">Userscripts</h4>
</div>
<p>Little userscripts that do big things</p>
<a href="./userscripts.html">
<span class="linkSpan"></span>
</a>
</div>
</div>
</div>
</div>
<!--
This is where more Cards go. Here's an example one!
<div class="objectCard">
<div class="objectCardBG" style="background-image: url(./files/css/images/LinkedDark.png); background-position: center; background-size: cover;">
<div class="objectCardFilter">
<div class="objectCardImageHolder">
<img loading="lazy" src="./files/css/images/LinkedDark.png "></img>
</div>
<div class="objectCardInfo">
<div class="objectCardHeader">
<h4 class="objectCardTitle">BaneCSS</h4>
</div>
<p>CSS by me, for all.<br>Usually an improvement over the original.</p>
<p>There's not much to say beyond that really, it's CSS styles for various sites.</p>
</div>
</div>
</div>
</div>
-->
<h1 class="separator-title ">//Support</h1>
<div class="section " id="support">
<div class="section-content ">
<p>This isn't necessary, but any support would be greatly appreciated!</p>
<div class="supportLinks ">
<a href="https://ko-fi.com/jordy3d ">Ko-Fi</a>
<a href="https://www.buymeacoffee.com/jordy3d ">Buymeacoffee</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>