|
1 | | -<!DOCTYPE html> |
| 1 | +<!doctype html> |
2 | 2 | <head> |
3 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
4 | | - <link rel="stylesheet" href="style.css"> |
5 | | - <link rel="preconnect" href="https://fonts.googleapis.com"> |
6 | | - <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> |
7 | | - <link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap" rel="stylesheet"> |
8 | | - <link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet"> |
9 | | - <link rel="icon" href="images/favicon.png"> |
10 | | - <title>debuggyo's Portfolio</title> |
11 | | -<!-- 8efc9137-a09f-4ae6-a462-3774472b2fcb --> |
| 3 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 4 | + <link rel="stylesheet" href="style.css" /> |
| 5 | + <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 6 | + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| 7 | + <link |
| 8 | + href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap" |
| 9 | + rel="stylesheet" |
| 10 | + /> |
| 11 | + <link |
| 12 | + rel="stylesheet" |
| 13 | + href=" https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=person,work" |
| 14 | + /> |
| 15 | + <link rel="icon" href="images/favicon.png" /> |
| 16 | + <title>debuggyo - Projects</title> |
| 17 | + <!-- 8efc9137-a09f-4ae6-a462-3774472b2fcb --> |
12 | 18 | </head> |
13 | 19 | <script> |
14 | | - function hasTouch() {1 |
15 | | - return 'ontouchstart' in document.documentElement |
16 | | - || navigator.maxTouchPoints > 0 |
17 | | - || navigator.msMaxTouchPoints > 0; |
18 | | - } |
| 20 | + function hasTouch() { |
| 21 | + 1; |
| 22 | + return ( |
| 23 | + "ontouchstart" in document.documentElement || |
| 24 | + navigator.maxTouchPoints > 0 || |
| 25 | + navigator.msMaxTouchPoints > 0 |
| 26 | + ); |
| 27 | + } |
19 | 28 |
|
20 | | - if (hasTouch()) { // remove all the :hover stylesheets |
21 | | - try { // prevent exception on browsers not supporting DOM styleSheets properly |
| 29 | + if (hasTouch()) { |
| 30 | + // remove all the :hover stylesheets |
| 31 | + try { |
| 32 | + // prevent exception on browsers not supporting DOM styleSheets properly |
22 | 33 | for (var si in document.styleSheets) { |
23 | | - var styleSheet = document.styleSheets[si]; |
24 | | - if (!styleSheet.rules) continue; |
| 34 | + var styleSheet = document.styleSheets[si]; |
| 35 | + if (!styleSheet.rules) continue; |
25 | 36 |
|
26 | | - for (var ri = styleSheet.rules.length - 1; ri >= 0; ri--) { |
27 | | - if (!styleSheet.rules[ri].selectorText) continue; |
| 37 | + for (var ri = styleSheet.rules.length - 1; ri >= 0; ri--) { |
| 38 | + if (!styleSheet.rules[ri].selectorText) continue; |
28 | 39 |
|
29 | | - if (styleSheet.rules[ri].selectorText.match(':hover')) { |
30 | | - styleSheet.deleteRule(ri); |
| 40 | + if (styleSheet.rules[ri].selectorText.match(":hover")) { |
| 41 | + styleSheet.deleteRule(ri); |
| 42 | + } |
31 | 43 | } |
32 | 44 | } |
33 | | - } |
34 | 45 | } catch (ex) {} |
35 | 46 | } |
36 | 47 | </script> |
37 | 48 | <body> |
38 | | - <div class="border"></div> |
39 | | - <div class="container"> |
40 | | - <img src="images/debuggyicon.png" id="logo"> |
41 | | - <hr> |
42 | | - <p class="title">PORTFOLIO</p> |
43 | | - <a href="https://twistsandturns.github.io" target="_blank"> |
44 | | - <div class="button" id="tat"> |
45 | | - <p class="btn-title">Twists and Turns</p> |
46 | | - <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> |
47 | | - </div> |
| 49 | + <header> |
| 50 | + <a class="tab active" href="/"> |
| 51 | + <span class="m3-icon">work</span> |
| 52 | + Projects |
48 | 53 | </a> |
49 | | - <a href="https://toendallwars.org" target="_blank"> |
50 | | - <div class="button" id="teaw"> |
51 | | - <p class="btn-title">ToEndAllWars</p> |
52 | | - <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> |
53 | | - </div> |
| 54 | + <a class="tab" href="aboutme.html"> |
| 55 | + <span class="m3-icon">person</span> |
| 56 | + About Me |
54 | 57 | </a> |
| 58 | + </header> |
| 59 | + <div class="container"> |
| 60 | + <img src="images/debuggylogo.png" id="logo" /> |
| 61 | + <hr /> |
| 62 | + <p class="title">Projects</p> |
| 63 | + <hr /> |
| 64 | + <h1 class="section-header">Linux</h1> |
| 65 | + <div class="section"> |
| 66 | + <a href="https://github.com/debuggyo/Exo" target="_blank"> |
| 67 | + <div class="button" id="exo"> |
| 68 | + <img src="images/exo.png" /> |
| 69 | + <div class="btn-info"> |
| 70 | + <p class="btn-title">Exo</p> |
| 71 | + <p class="btn-desc"> |
| 72 | + A material 3 inspired desktop shell for Niri and |
| 73 | + Hyprland made with Ignis. |
| 74 | + </p> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </a> |
| 78 | + </div> |
| 79 | + <h1 class="section-header">Web</h1> |
| 80 | + <div class="section"> |
| 81 | + <a href="https://twistsandturns.github.io" target="_blank"> |
| 82 | + <div class="button" id="tat"> |
| 83 | + <img src="images/tat.png" /> |
| 84 | + <div class="btn-info"> |
| 85 | + <p class="btn-title">Twists and Turns</p> |
| 86 | + <p class="btn-desc"> |
| 87 | + A website that I created to show details about my |
| 88 | + object camp Twists and Turns which I have since |
| 89 | + abandoned. |
| 90 | + </p> |
| 91 | + </div> |
| 92 | + </div> |
| 93 | + </a> |
| 94 | + <a href="https://toendallwars.org" target="_blank"> |
| 95 | + <div class="button" id="teaw"> |
| 96 | + <img src="images/teaw.png" /> |
| 97 | + <div class="btn-info"> |
| 98 | + <p class="btn-title">ToEndAllWars</p> |
| 99 | + <p class="btn-desc"> |
| 100 | + A project that I created for the ToEndAllWars DIET |
| 101 | + team. Mainly developed by brandonusa, I helped with |
| 102 | + much of the styling and bug fixes. |
| 103 | + </p> |
| 104 | + </div> |
| 105 | + </div> |
| 106 | + </a> |
| 107 | + </div> |
55 | 108 | </div> |
56 | 109 | </body> |
0 commit comments