-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (106 loc) · 4.01 KB
/
index.html
File metadata and controls
109 lines (106 loc) · 4.01 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
<!doctype html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=person,work"
/>
<link rel="icon" href="images/favicon.png" />
<title>debuggyo - Projects</title>
<!-- 8efc9137-a09f-4ae6-a462-3774472b2fcb -->
</head>
<script>
function hasTouch() {
1;
return (
"ontouchstart" in document.documentElement ||
navigator.maxTouchPoints > 0 ||
navigator.msMaxTouchPoints > 0
);
}
if (hasTouch()) {
// remove all the :hover stylesheets
try {
// prevent exception on browsers not supporting DOM styleSheets properly
for (var si in document.styleSheets) {
var styleSheet = document.styleSheets[si];
if (!styleSheet.rules) continue;
for (var ri = styleSheet.rules.length - 1; ri >= 0; ri--) {
if (!styleSheet.rules[ri].selectorText) continue;
if (styleSheet.rules[ri].selectorText.match(":hover")) {
styleSheet.deleteRule(ri);
}
}
}
} catch (ex) {}
}
</script>
<body>
<header>
<a class="tab active" href="/">
<span class="m3-icon">work</span>
Projects
</a>
<a class="tab" href="aboutme.html">
<span class="m3-icon">person</span>
About Me
</a>
</header>
<div class="container">
<img src="images/debuggylogo.png" id="logo" />
<hr />
<p class="title">Projects</p>
<hr />
<h1 class="section-header">Linux</h1>
<div class="section">
<a href="https://github.com/debuggyo/Exo" target="_blank">
<div class="button" id="exo">
<img src="images/exo.png" />
<div class="btn-info">
<p class="btn-title">Exo</p>
<p class="btn-desc">
A material 3 inspired desktop shell for Niri and
Hyprland made with Ignis.
</p>
</div>
</div>
</a>
</div>
<h1 class="section-header">Web</h1>
<div class="section">
<a href="https://twistsandturns.github.io" target="_blank">
<div class="button" id="tat">
<img src="images/tat.png" />
<div class="btn-info">
<p class="btn-title">Twists and Turns</p>
<p class="btn-desc">
A website that I created to show details about my
object camp Twists and Turns which I have since
abandoned.
</p>
</div>
</div>
</a>
<a href="https://toendallwars.org" target="_blank">
<div class="button" id="teaw">
<img src="images/teaw.png" />
<div class="btn-info">
<p class="btn-title">ToEndAllWars</p>
<p class="btn-desc">
A project that I created for the ToEndAllWars DIET
team. Mainly developed by brandonusa, I helped with
much of the styling and bug fixes.
</p>
</div>
</div>
</a>
</div>
</div>
</body>