Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
SandPoot committed Sep 6, 2024
1 parent 61c0af7 commit 6fc451b
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bg-nanotrasen.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Sandstorm Station 13 wiki</title>
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/fd8c310f47.js" crossorigin="anonymous"></script>
</head>
<body>
<img src="bg-nanotrasen.svg" class="background-image"/>
<i class="fa-github"></i>
<div class="top-bar">
<div class="right-side">
<a href="https://github.com/Sandstorm-Station/Sandstorm-Station-13"><i class="fa-brands fa-github"></i> GitHub</a>
<a href="https://discord.gg/5dPDJU2xKN"><i class="fa-brands fa-discord"></i> Discord</a>
</div>
</div>
</body>
</html>
46 changes: 46 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
body {
background-color: #262626;
color: white;
}

div.top-bar {
background-color: #1b1b1b;
position: fixed;
top: 5px;
left: 5px;
right: 5px;
text-align: center;
}

div.right-side {
text-align: right;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
}

img.background-image {
position: fixed;
top: 40dvh;
bottom: 40dvh;
left: 40dvw;
right: 40dvw;
z-index: -1;
}

a:link {
text-decoration: none;
background-color: #3e6189;
padding: 0.25em 1em;
display: inline-block;
color: white;
border-radius: 0.1em;
}

a:hover {
background-color: #5c83b0;
}

a:visited {
color: white;
}

0 comments on commit 6fc451b

Please sign in to comment.