Skip to content

Commit

Permalink
finally doing something with this site
Browse files Browse the repository at this point in the history
  • Loading branch information
chromonym committed Nov 17, 2023
1 parent d92ba30 commit c279fd3
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 11 deletions.
Binary file added imgs/cq-mask.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 16 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>TheXXOs Website (WIP)</title>
<link rel="stylesheet" href="style.css"/>
<title>xxos site</title>
</head>
<body>
<h1>TheXXOs's site</h1>
<p>This is just a placeholder site with a bunch of links at the moment. I'll get to making it a proper website (and look nice) some time in the future.</p>
<h3>Ongoing* (i.e. incomplete) projects (that have a website):</h3>
<ul>
<li><a href="https://thexxos.github.io/regiohash/?about">Regiohashing Minesweeper Image Generator</a></li>
</ul>
<h3>Finished* projects (that have a website):</h3>
<ul>
<li><a href="https://thexxos.github.io/ithkapp">Ithkuil IV Translator</a> (schoolwork)</li>
</ul>
<div class="gradient-border">
<div class="gradient-box">
<h1><small>The</small>XXOs’ webbed site</h1>
<p>This is just a placeholder site with a bunch of links at the moment. I'll get to making it a proper website (and look nice) some time in the future.</p>
<h3>Incomplete projects (that have a website):</h3>
<ul>
<li><a href="https://thexxos.github.io/regiohash/?about">Regiohashing Minesweeper Image Generator</a></li>
</ul>
<h3>Finished* projects (that have a website):</h3>
<ul>
<li><a href="https://thexxos.github.io/ithkapp">Ithkapp/hwırbuvıe-ekţgyıl</a> (Ithkuil IV Translator)</li>
</ul>
</div>
</div>
</body>
</html>
45 changes: 45 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
@import url('https://fonts.googleapis.com/css2?family=Tomorrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

:root {
--black: #1a1b23;
--grey: #b7b6c1;
--gradient: linear-gradient(180deg, #ff9200 0%, #ffb624 25%, #fff953 50%, #6dffab 75%, #00ffff 100%);
}

body {
background-color: var(--black);
color: var(--grey);
padding: 30px;
font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
font-family: 'Tomorrow', sans-serif;
margin-top: 0px;
color: white;
}

a {
color: cyan;
}
a:visited {
color: #ffb624;
}

small {
font-size: 0.5em;
color: var(--grey);
}

.gradient-border {
padding: 5px;
border-radius: 10px;
position: relative;
background: var(--gradient);
}
.gradient-box {
border-radius: 5px;
background: var(--black);
padding: 1rem;
}

0 comments on commit c279fd3

Please sign in to comment.