Skip to content

Development #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ crashlytics-build.properties
fabric.properties

# MacOS DS Stuff
**.DS_Store
**.DS_Store

#node_modules
node_modules
Empty file added .prettierrc
Empty file.
469 changes: 302 additions & 167 deletions docs/about.html

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions docs/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,24 @@
font-family: 'Roboto', sans-serif;
color: white;
font-size: 2vw;
}
.tex sub, .latex sub, .latex sup {
text-transform: uppercase;
}

.tex sub, .latex sub {
vertical-align: -0.5ex;
margin-left: -0.1667em;
margin-right: -0.125em;
}

.tex, .latex, .tex sub, .latex sub {
font-size: 1em;
}

.latex sup {
font-size: 0.85em;
vertical-align: 0.15em;
margin-left: -0.36em;
margin-right: -0.15em;
}
119 changes: 65 additions & 54 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,65 +32,76 @@
<link rel="manifest" href="favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="favicon/ms-icon-144x144.png">
<script src="scripts.js"></script>
</head>

<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js/jquery.js"></script></head>
<body>
<canvas id="canvas" style="z-index: -1; position: absolute; left: 0; right: 0; top: 0; bottom: 0"></canvas>

<section id="header"class="section">

<header class="container">

<nav class="navbar is-transparent" role="navigation" aria-label="main navigation">

<div id="navbarBrand" class="navbar-brand">
<a class="navbar-item" href="http://shahaed.me">
<img src="favicon/white-icon-192x192.png" alt="Logo">
</a>
<a role="button" class="navbar-burger " data-target="navbarMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>

<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item is-active" href="index.html">Home</a>
<a class="navbar-item" href="projects.html">Projects</a>
<a class="navbar-item" href="about.html">About Me</a>
<div id="overlay" style="position: absolute; z-index: 10">
<section id="header" class="section">

<header class="container">

<nav class="navbar is-transparent" role="navigation" aria-label="main navigation">

<div id="navbarBrand" class="navbar-brand">
<a class="navbar-item" href="http://shahaed.me">
<img src="favicon/white-icon-192x192.png" alt="Logo">
</a>
<a role="button" class="navbar-burger " data-target="navbarMenu" aria-label="menu"
aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>

<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item is-active" href="index.html">Home</a>
<a class="navbar-item" href="projects.html">Projects</a>
<a class="navbar-item" href="about.html">About Me</a>
</div>
</div>

</nav>
</header>
</section>


<section id="body" class="section">

<div class="container">
<div class="column">
<p class="roboto-white">
hello, my name is
</p>
<h1 class="color-cycle">
Shahaed <p style="text-indent: 25vw">Hasan</p>
</h1>
<p class="roboto-white-small has-text-right">
software engineer. bio engineer. science communicator.
</p>
</div>

</nav>
</header>
</section>

<section id="body" class="section">

<div class="container">
<div class="column">
<p class="roboto-white">
hello, my name is
</p>
<h1 class="color-cycle">
Shahaed <p style="text-indent: 25vw">Hasan</p>
</h1>
<p class="roboto-white-small has-text-right">
software engineer. bio engineer. science communicator.
</p>
</div>
</div>

<br>
<div class="container has-text-centered">
<a href="resume.html" class="button is-outlined is-danger" role="button">Resume</a>
<a href="https://github.com/shahaed" class="button is-outlined is-github" role="button">Github &nbsp <i class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/shahaed" class="button is-outlined is-linkedin" role="button">LinkedIn &nbsp <i class="fab fa-linkedin"></i></a>
<a href="https://devpost.com/Shahaed" class="button is-outlined is-link" role="button">Devpost</a>
</div>


<br>
<div class="container has-text-centered">
<a href="resume.html" class="button is-outlined is-danger" role="button">Resume</a>
<a href="https://github.com/shahaed" class="button is-outlined is-github" role="button">Github &nbsp <i
class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/shahaed" class="button is-outlined is-linkedin" role="button">LinkedIn &nbsp <i
class="fab fa-linkedin"></i></a>
<a href="https://devpost.com/Shahaed" class="button is-outlined is-link" role="button">Devpost</a>
</div>


</section>
</div>
<script src="js/fluid_webgl.js"></script>

</section>
</body>
</html>
Loading