-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finally doing something with this site
- Loading branch information
Showing
3 changed files
with
61 additions
and
11 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |