Browse Source

Merge remote-tracking branch 'origin/master'

pull/11/head
Jeffery Russell 5 years ago
parent
commit
6028745851
3 changed files with 19 additions and 8 deletions
  1. +3
    -0
      public/about.css
  2. +13
    -5
      public/about.html
  3. +3
    -3
      public/style.css

+ 3
- 0
public/about.css View File

@ -16,6 +16,9 @@
position: relative;
background-color: rgb(242, 242, 242);
border-radius: 0px 0px 20px 20px;
}
.plink {
}
body {
background-color: #232323;

+ 13
- 5
public/about.html View File

@ -1,4 +1,4 @@
<!doctype html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
@ -11,7 +11,7 @@
<div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
<div id="header-title">
<a href="./index.html">
<img id="icon" src="./logo.svg" />
<img id="logo" src="./logo.svg" />
</a>
</div>
<ul id="navigation" class="nav justify-content-end">
@ -37,11 +37,19 @@
<div id="main">
<div id="content" class="container">
<div id="content-title">
<h1 class="big-title text-center">Developers</h1>
<h1 class="big-title text-center">What is this?</h1>
</div>
<div id="content-body" class="container">
<p>
some stuff will go here
<p style="padding: 10px;">
jeff this is where you can write a bunch about the project
</p>
</div>
<div id="content-title">
<h1 class="big-title text-center">Why did you make this?</h1>
</div>
<div id="content-body" class="container">
<p style="padding: 10px;">
This project was made for participation in <a class="plink" href="https://brickhack.io/">BrickHack V</a>.
</p>
</div>
</div>

+ 3
- 3
public/style.css View File

@ -24,7 +24,7 @@
font-size: 25px;
}
#logo {
height: 40px;
height: 60px;
}
#navigation {
width: 70%;
@ -47,11 +47,11 @@
padding: 5px;
font-size: 20px;
}
a {
.nav-item a {
color: #232323;
text-decoration: none;
}
a:hover {
.nav-item a:hover {
color: rgb(57, 163, 225);
text-decoration: none;
}

Loading…
Cancel
Save