Skip to content

Updated index file with css #13

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: main
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
Binary file added Profile Photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
159 changes: 159 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Denish Asodariya's links</title>
<style>
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #004643;
display: flex;
justify-content: center;
}

.banner-image {
width: 128px;
height: 128px;
object-fit: cover;
border-radius: 128px;
}

.thumbnail {
width: 48px;
height: 48px;
border-radius: 48px;
object-fit: cover;
}

.name {
color: #fffffe;
display: flex;
justify-content: center;
}

.social-icons a {
color: #fffffe;
text-decoration: none
}

.link {
background-color: #f9bc60;
display: flex;
align-items: center;
padding: 5px;
}

.link a {
color: #001e1d;
text-decoration: none;
text-align: center;
flex-grow: 1;
}

.items {
display: flex;
flex-direction: column;
gap: 30px;
max-width: 640px;
flex-grow: 1;
}

.banner {
display: flex;
justify-content: center;
}

.social-icons {
display: flex;
justify-content: space-around;
}

</style>
</head>

<body>
<div class="items">
<div class="banner">
<img src="Profile Photo.jpg" alt="Denish Asodariya headshot" class="banner-image">
</div>

<div class="name">
Denish Asodariya
</div>

<div class="social-icons">
<a href="https://github.com/denish-asodariya" target="_blank">
GitHub
</a>

<a href="https://www.linkedin.com/in/denish-asodariya/" target="_blank">
LinkedIn
</a>

<a href="https://www.instagram.com/denish_asodariya/" target="_blank">
Instagram
</a>

<a href="https://twitter.com/denish_asodariya" target="_blank">
Twitter
</a>
</div>

<div class="link">
<img class="thumbnail"
src="https://www.ycombinator.com/assets/ycdc/yc-og-image-0cfa80cac837d64d9b4f0705950000b66906ac032791376bd721f246fafcc7b4.png">

<a target="_blank" href="http://paulgraham.com/startupideas.html">How to Get Startup Ideas
— Paul Graham</a>
</div>

<div class="link">
<img class="thumbnail" src="thumbnails/typography.jpg">

<a target="_blank" href="https://practicaltypography.com/typography-in-ten-minutes.html">Typography in ten minutes
— Matthew
Butterick</a>
</div>

<div class="link">
<img class="thumbnail"
src="https://media.newyorker.com/photos/59096d451c7a8e33fb38e4ca/16:9/w_1280,c_limit/071210_r16884_p646.jpg">

<a target="_blank" href="https://www.newyorker.com/magazine/2007/12/10/the-checklist/">A
Life-Saving Checklist — The New Yorker</a>
</div>

<div class="link">
<img class="thumbnail" src="https://waitbutwhy.com/wp-content/uploads/2015/12/Tail-End-F.png">

<a target="_blank" href="https://waitbutwhy.com/2015/12/the-tail-end.html">The Tail End — Wait
But Why</a>
</div>

<div class="link">
<img class="thumbnail" src="thumbnails/rome.jpg">

<a target="_blank" href="https://www.exurbe.com/the-shape-of-rome/">The Shape of Rome — Ex
Urbe</a>
</div>

<div class="link">
<img class="thumbnail" src="thumbnails/egg.jpg">

<a target="_blank" href="http://www.galactanet.com/oneoff/theegg_mod.html">The Egg — Andy
Weir</a>
</div>

<div class="link">
<img class="thumbnail" src="thumbnails/question.jpg">

<a target="_blank"
href="https://www.martincwiner.com/wp-content/uploads/2011/06/The-Last-Question-Isaac-Asimov.pdf">The Last
Question — Isaac Asimov</a>
</div>
</div>
</body>

</html>
2 changes: 1 addition & 1 deletion render.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
- type: web
name: MYAPPNAME # the name of this service, eg hello-world
name: links # the name of this service, eg hello-world
env: ruby # this app is written in ruby
plan: free # make sure to set this to free or you'll get billed $$$
buildCommand: "./bin/render-build.sh" # we already created these two files for you
Expand Down
Binary file added thumbnails/egg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added thumbnails/question.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added thumbnails/rome.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added thumbnails/typography.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.