Browse Source

Added 404 and updated logo, among other things.

pull/11/head
CetaceanNation 5 years ago
parent
commit
104e1d85af
6 changed files with 19 additions and 9 deletions
  1. +3
    -1
      public/404.html
  2. +0
    -3
      public/about.css
  3. +2
    -0
      public/about.html
  4. +5
    -0
      public/index.html
  5. +4
    -3
      public/logo.svg
  6. +5
    -2
      public/style.css

+ 3
- 1
public/404.html View File

@ -34,7 +34,9 @@
</ul> </ul>
</div> </div>
<div class="main"> <div class="main">
<div id="content" class="container">
</div>
</div> </div>
</body> </body>
</html> </html>

+ 0
- 3
public/about.css View File

@ -31,7 +31,4 @@
} }
.plink { .plink {
color: rgb(250, 152, 33); color: rgb(250, 152, 33);
}
body {
background-color: #232323;
} }

+ 2
- 0
public/about.html View File

@ -3,6 +3,8 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css" /> <link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./about.css" /> <link rel="stylesheet" href="./about.css" />

+ 5
- 0
public/index.html View File

@ -3,6 +3,8 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css" /> <link rel="stylesheet" href="./style.css" />
</head> </head>
@ -33,6 +35,9 @@
</li> </li>
</ul> </ul>
</div> </div>
<div class="main">
<div id="content" class="container">
</div>
</body> </body>
</html> </html>

+ 4
- 3
public/logo.svg
File diff suppressed because it is too large
View File


+ 5
- 2
public/style.css View File

@ -25,6 +25,9 @@
#logo { #logo {
height: 60px; height: 60px;
} }
#error-code {
background-color: rgb(208, 208, 208);
}
#navigation { #navigation {
width: 70%; width: 70%;
padding-right: 20px !important; padding-right: 20px !important;
@ -56,9 +59,9 @@
text-decoration: none; text-decoration: none;
} }
.nav-item a:hover { .nav-item a:hover {
color: rgb(57, 163, 225);
color: rgb(250, 152, 33);
text-decoration: none; text-decoration: none;
} }
body { body {
background-color: rgb(242, 242, 242);
background-color: #232323;
} }

Loading…
Cancel
Save