Browse Source

Add initial shell of site

main
Ravi Shah 5 years ago
parent
commit
4c92df64ec
  1. 94
      css/styles.css
  2. 35
      index.html
  3. BIN
      static/icons/android-chrome-192x192.png
  4. BIN
      static/icons/android-chrome-512x512.png
  5. BIN
      static/icons/apple-touch-icon.png
  6. BIN
      static/icons/favicon-16x16.png
  7. BIN
      static/icons/favicon-32x32.png
  8. BIN
      static/icons/favicon.ico
  9. 1
      static/site.webmanifest

94
css/styles.css

@ -0,0 +1,94 @@
:root {
--main-bg-color: #568ea3;
--main-card-bg-color: #E96400;
--main-highlight-color: #a40e4c;
}
::selection {
background: var(--main-highlight-color); /* WebKit/Blink Browsers */
}
::-moz-selection {
background: var(--main-highlight-color); /* Gecko Browsers */
}
* {
box-sizing: border-box;
}
html {
height: 100%;
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
height: 100%;
background-color: var(--main-bg-color);
}
h1 {
all: initial;
}
h1 {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
color: white;
padding-right: 8px;
font-size: 23.5px;
}
a {
color: white;
}
a:hover {
color: var(--main-highlight-color);
}
.Navbar {
background-color: var(--main-card-bg-color);
display: flex;
padding: 16px;
font-family: 'Roboto', sans-serif;
color: white;
}
.Navbar__Link {
padding-right: 8px;
font-size: 18.5px;
}
.Navbar__Link-brand {
padding-right: 8px;
font-size: 18.5px;
}
.Navbar__Link a,
h1 {
color: white;
}
.Navbar__Link a:link {
text-decoration: none;
}
.Navbar__Link a:visited {
text-decoration: none;
}
.Navbar__Link a:hover {
text-decoration: underline;
}
.Navbar__Link a:active {
text-decoration: underline;
}
.Navbar__Items {
display: flex;
}
.Navbar__Items--right {
margin-left: auto;
}

35
index.html

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Impact of Poaching on Ecosystems</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This biology project looks into the impact of poaching on ecosystems.">
<meta charset="UTF-8">
<link href="css/styles.css" rel="stylesheet" media="screen">
<link rel="manifest" href="static/site.webmanifest">
<link rel="apple-touch-icon" sizes="180x180" href="static/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/icons/favicon-16x16.png">
</head>
<body>
<!-- Top Navbar -->
<div class="Navbar">
<div class="Navbar__Link Navbar__Link-brand">
<h1><a href="#">Impact of Poaching on Ecosystems</a></h1>
</div>
<nav class="Navbar__Items Navbar__Items--right">
<div class="Navbar__Link">
<a href="mailto:ravi@yeetpc.com">Contact Me</a>
</div>
</nav>
</div>
<!-- End Top Navbar -->
<script src="js/redirects.js"></script>
</body>
</html>

BIN
static/icons/android-chrome-192x192.png

Binary file not shown.

After

Width: 192  |  Height: 192  |  Size: 13 KiB

BIN
static/icons/android-chrome-512x512.png

Binary file not shown.

After

Width: 512  |  Height: 512  |  Size: 41 KiB

BIN
static/icons/apple-touch-icon.png

Binary file not shown.

After

Width: 180  |  Height: 180  |  Size: 12 KiB

BIN
static/icons/favicon-16x16.png

Binary file not shown.

After

Width: 16  |  Height: 16  |  Size: 645 B

BIN
static/icons/favicon-32x32.png

Binary file not shown.

After

Width: 32  |  Height: 32  |  Size: 1.4 KiB

BIN
static/icons/favicon.ico

Binary file not shown.

1
static/site.webmanifest

@ -0,0 +1 @@
{"name":"Impact of Poaching on Ecosystems","short_name":"Poaching's Impact","icons":[{"src":"/static/icons/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/static/icons/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Loading…
Cancel
Save