mirror of
https://github.com/hnasheralneam/hnasheralneam.github.io.git
synced 2024-11-07 08:05:54 -05:00
Working on roadmap page (not complete!)
This commit is contained in:
parent
1c2330453f
commit
165c289f68
3 changed files with 161 additions and 0 deletions
78
Styles/roadmap.css
Normal file
78
Styles/roadmap.css
Normal file
|
@ -0,0 +1,78 @@
|
|||
body {
|
||||
background-color: #ffbbbb;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.header {
|
||||
background-color: #663399;
|
||||
}
|
||||
|
||||
.tabswitcher {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto;
|
||||
background-color: #222;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tabswitcherbtn {
|
||||
padding: .8em 0;
|
||||
display: inline-block;
|
||||
background-color: #222;
|
||||
font: 1em sans-serif;
|
||||
transition: .2s;
|
||||
}
|
||||
|
||||
.activeswitcher {
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
.active-section { background-color: #00ff00; }
|
||||
.timeline-section { background-color: #00ffff; }
|
||||
.roadmap-section { background-color: #ffff00; }
|
||||
.activetab { background-color: #ffffff; }
|
||||
|
||||
.sections {
|
||||
padding: 2em 0;
|
||||
overflow: auto;
|
||||
white-space: nowrap;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.sections::-webkit-scrollbar { display: none; }
|
||||
|
||||
.section {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
width: 100vw;
|
||||
white-space: initial;
|
||||
color: #222;
|
||||
transition: .05s;
|
||||
}
|
||||
|
||||
|
||||
.project-block {
|
||||
padding: 4em 3em;
|
||||
display: grid;
|
||||
grid-template-columns: 50% 50%;
|
||||
background-color: #ddd;
|
||||
border-bottom: solid .2em #222;
|
||||
}
|
||||
|
||||
.img-parent {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.img-parent img {
|
||||
max-width: 40vw;
|
||||
}
|
||||
|
||||
.text-block {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (max-width: 700px) {
|
||||
.project-block {
|
||||
grid-template-columns: auto;
|
||||
}
|
||||
}
|
|
@ -26,6 +26,7 @@
|
|||
<br>
|
||||
<h2 id="work">Work</h2>
|
||||
<p>My current big projects are <a href="https://github.com/editorrust/git-organized">Git Organized</a>, a project management and planning tool for developer projects, and an <a href="https://github.com/editorrust/chat-ex">unnamed chat project</a>, which is just a bunch of experiments with web sockets and the others nice stuffs. If you like them, you can email me to contribute.</p>
|
||||
<!-- <p>You can see the roadmaps -> <a href="/roadmap.html">here</a></p> -->
|
||||
<h3>Other work</h3>
|
||||
<p>Some other work I've done include <a href="https://hillside-township.github.io/">Hillside Township</a>, an imaginary town with a satirical newspaper. The website's nice, so just... ignore the content.</p>
|
||||
<p>Another cool little thing is <a href="https://editorrust.github.io/activity-log/">Activity Log</a>, which is meant to be used for tracking time. It's a really cool project, with a cool design and charts and everything.</p>
|
||||
|
|
82
roadmap.html
Normal file
82
roadmap.html
Normal file
|
@ -0,0 +1,82 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta name="description" content="The developer Editor Rust's personal website!">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="Icons/race.png">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="Styles/styles.css">
|
||||
<link rel="stylesheet" href="Styles/roadmap.css">
|
||||
<title>Roadmap | Editor Rust</title>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<h1>Projects</h1>
|
||||
<h2>What I'm working on</h2>
|
||||
<a href="/">go home</a>
|
||||
<div class="tabswitcher">
|
||||
<div class="tabswitcherbtn switcher-active activeswitcher" onclick="switchtabto('active')">Active</div>
|
||||
<div class="tabswitcherbtn switcher-timeline" onclick="switchtabto('timeline')">Timeline</div>
|
||||
<div class="tabswitcherbtn switcher-roadmap" onclick="switchtabto('roadmap')">Roadmap</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sections">
|
||||
<div class="section active-section activetab" id="active-section">
|
||||
one
|
||||
<p>hi</p>
|
||||
</div>
|
||||
<div class="section timeline-section" id="timeline-section">
|
||||
<div class="project-block">
|
||||
<div class="img-parent">
|
||||
<img src="https://goldrush.cyclic.app/Images/astroid.png" alt="Gold Rush astroid">
|
||||
</div>
|
||||
<div class="text-block">
|
||||
<h3 class="date">Dec 7 2020</h3>
|
||||
<h2 class="title">Gold Rush</h2>
|
||||
<p class="desc">hmfmdnnsh</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="project-block">
|
||||
<div class="text-block">
|
||||
<h3 class="date">Jan 1 2021</h3>
|
||||
<h2 class="title">Vegetable Dash</h2>
|
||||
<p class="desc">keuiahshbm</p>
|
||||
</div>
|
||||
<div class="img-parent">
|
||||
<img src="https://vegetabledash.cyclic.app/Images/Plots/plot.png" alt="Vegetable Dash plot">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section roadmap-section" id="roadmap-section">
|
||||
three
|
||||
<p>hi</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<div>
|
||||
<h2>Find me</h2>
|
||||
<p>My Github -> <a href="https://github.com/editorrust">GitHub</a></p>
|
||||
<p class="faded-footer">GitHub is great, I host all my projects on it</p>
|
||||
<p>Stack Overflow -> <a href="https://stackoverflow.com/users/14818357/editor-rust">Stack Overflow</a></p>
|
||||
<p class="faded-footer">I kinda hate Stack Overflow because they blocked me from doing anything</p>
|
||||
<p>CodePen -> <a href="https://codepen.io/editorrust">CodePen</a></p>
|
||||
<p class="faded-footer">I don't use this account very often, but here it is</p>
|
||||
</div>
|
||||
<div>
|
||||
<h2>Email me</h2>
|
||||
<p>My developer account -> <a href="mailto:editorrust@gmail.com">editorrust@gmail.com</a></p>
|
||||
<p>My personal account -> <a href="mailto:hamza.elabi1@gmail.com">hamza.elabi1@gmail.com</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<script>
|
||||
function switchtabto(tab) {
|
||||
document.querySelector(".activetab").classList.remove("activetab");
|
||||
document.querySelector(`.${tab}-section`).classList.add("activetab");
|
||||
document.querySelector(".activeswitcher").classList.remove("activeswitcher");
|
||||
document.querySelector(`.switcher-${tab}`).classList.add("activeswitcher");
|
||||
document.querySelector(`#${tab}-section`).scrollIntoView({ behavior: "smooth" });
|
||||
}
|
||||
</script>
|
||||
</html>
|
Loading…
Reference in a new issue