Skip to content

Commit

Permalink
Add CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
KTrain5169 committed Sep 26, 2024
1 parent 5e26000 commit 470b78a
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 13 deletions.
21 changes: 21 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* Set body background and typography */
body {
font-family: 'Helvetica', sans-serif;
background-color: #181818;
color: #f0f0f0;
margin: 0;
padding: 20px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}

/* Bold title */
b {
font-size: 28px;
margin-bottom: 15px;
display: block;
}
31 changes: 18 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
<!DOCTYPE html>
<head>
<title> NotEssential redirect </title>
</head>
<body>
<b> There's nothing here... </b>
<br>
Due to limitations GitHub imposes when using Pages, we don't host the site here.
<br>
The actual site can be found here: https://notessential.blurry.gay/
<br>
<br>
<i> The gallery will be up soon! </i>
</body>
<html lang=en>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> NotEssential redirect </title>
<link rel="stylesheet" type="text/css" href="./css/styles.css">
</head>
<body>
<b> There's nothing here... </b>
<br>
Due to limitations GitHub imposes when using Pages, we don't host the site here.
<br>
The actual site can be found here: https://notessential.blurry.gay/
<br>
<br>
<i> The gallery will be up soon! </i>
</body>
</html>

0 comments on commit 470b78a

Please sign in to comment.