adds a dropdown menu for colour schemes and a dark mode
This commit is contained in:
parent
f1c77852d2
commit
5c619f8fa4
11 changed files with 651 additions and 156 deletions
|
@ -1,7 +1,11 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="Wireframe.css">
|
||||
<link id="colors" rel="stylesheet" href="colors.css">
|
||||
<link rel="stylesheet" href="effects.css">
|
||||
<link rel="stylesheet" href="Wireframe.css">
|
||||
<script src="colorThemes.js"></script>
|
||||
<title>Rosia Evans Homepage and Blog</Title>
|
||||
<link rel="icon" href="willow.ico" type="image/x-icon"/>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
|
@ -15,32 +19,62 @@
|
|||
|
||||
<li><a href=/index.html>Welcome!</a></li>
|
||||
|
||||
<h2>Newer Work</h2>
|
||||
<li><a href=/CNCMachine.html>CNSelfie</a></li>
|
||||
<h2>Major Work</h2>
|
||||
<li><a href=/Aardvark.html>AardvarkXR</a></li>
|
||||
<li><a href=/ThisSite.html>This Site</a></li>
|
||||
<li><a href=/PlantCareV2.html>Plant System Work Gallery</a></li>
|
||||
<li><a href=/Laptop.html>Self-built Laptop</a></li>
|
||||
|
||||
|
||||
<h2>Minor Work</h2>
|
||||
<li><a href=/CNCMachine.html>CNSelfie</a></li>
|
||||
<li><a href=/Uno.html>SDL Uno</a></li>
|
||||
<li><a href=/PlantSystem.html>Plant Watering System</a></li>
|
||||
<li><a href=/SonicPiWork.html>Sonic-Pi and Algorave</a></li>
|
||||
|
||||
|
||||
<h2>Older Work</h2>
|
||||
<li><a href=/MindMap.html>Mind Map Maker</a></li>
|
||||
<li><a href=/Aardvark.html>AardvarkXR</a></li>
|
||||
<li><a href=/EPQProject.html>EPQ Project</a></li>
|
||||
<li><a href=/CatTowerDefence.html>Tower defence game</a></li>
|
||||
|
||||
|
||||
<h2>Thoughts And Essays</h2>
|
||||
<li><a href=/permacomputing.html>Permacomputing</a></li>
|
||||
<h2>Thoughts and Essays</h2>
|
||||
<li><a href=/Permacomputing.html>Permacomputing</a></li>
|
||||
<li><a href=/Livecoding.html>Live-Coding</a></li>
|
||||
|
||||
|
||||
<h2>University</h2>
|
||||
<li><a href=/aberCompSoc.html>aberCompSoc</a></li>
|
||||
<li><a href=/RoboticsSociety.html>Aber Robotics Soc</a></li>
|
||||
<li><a href=/SailBot.html>aberSailBot</a></li>
|
||||
<li><a href=/aberCompSoc.html>AberCompSoc</a></li>
|
||||
<li><a href=/RoboticsSociety.html>AberRoboticsSoc</a></li>
|
||||
<li><a href=/SailBot.html>AberSailBot</a></li>
|
||||
|
||||
|
||||
<h2>Useful Notes</h2>
|
||||
<li><a href=/UnderstandingWavesharesEinkDrivers.html>Understanding Waveshare's E-Paper C Drivers</a></li>
|
||||
|
||||
|
||||
<h2>Work Experience</h2>
|
||||
<li><a href=/SBSWork.html>SBS Internship</a></li>
|
||||
<li><a href=/SBSWork.html>Skipton Building Society Internship</a></li>
|
||||
|
||||
|
||||
<h2 id="contactsHeader"> Contact Me: </h2>
|
||||
<div class="contacts">
|
||||
<a href="mailto:rosiaeevans@gmail.com">Email</a>
|
||||
<a href="https://fosstodon.org/@Wi__Ro" rel="me">Mastodon</a>
|
||||
</div>
|
||||
<h2 id="contactsHeader"> My Work: </h2>
|
||||
<div class="contacts">
|
||||
<a href="https://github.com/Wil-Ro">Github</a>
|
||||
<a href="CV.pdf">CV</a>
|
||||
</div>
|
||||
|
||||
<h2 id="contactsHeader"> Page Settings: </h2>
|
||||
<div>
|
||||
<select id="pageColor" onchange="updateColor()">
|
||||
<option value="lightColors.css">Light</option>
|
||||
<option value="darkColors.css">Dark/Low Contrast</option>
|
||||
</select>
|
||||
</div>
|
||||
</nav>
|
||||
<article><h1>Example Post</h1>
|
||||
<p>This is where a basic summary of the post would go if I wanted to add one</p>
|
||||
|
@ -63,6 +97,19 @@ moomin</p>
|
|||
|
||||
</article>
|
||||
</main>
|
||||
<div>
|
||||
<div class="webring">
|
||||
<h2> Webrings </h2>
|
||||
<div class="webringContent">
|
||||
<a href="https://users.aber.ac.uk/evh14"><-</a>
|
||||
<a href="https://fediring.net/"> aber_webring </a>
|
||||
<a href="https://dannylarge144.github.io">-></a>
|
||||
</div>
|
||||
|
||||
<div class="webringContent">
|
||||
<a href="https://fediring.net/previous?host=rosia.me"><-</a>
|
||||
<a href="https://fediring.net/"> fediring </a>
|
||||
<a href="https://fediring.net/next?host=rosia.me">-></a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue