-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finish version 0.1.1, clean stuff upp and add image serving
- Loading branch information
Showing
19 changed files
with
350 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[target.x86_64-unknown-linux-musl] | ||
linker = "rust-lld" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,8 +79,6 @@ impl Drop for ThreadPool { | |
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
|
||
#[test] | ||
fn it_works() { | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.body { | ||
position: fixed; | ||
top: 7%; | ||
width: 100%; | ||
background: white; | ||
} | ||
|
||
.fader { | ||
position: fixed; | ||
left: 0; | ||
bottom: 10%; | ||
width: 100%; | ||
height: 60px; | ||
background-image: linear-gradient(white,#73A0C7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.footer { | ||
position: absolute; | ||
bottom: 0; | ||
width: 100%; | ||
padding: 0 8%; | ||
height: 5rem; | ||
background: #080008; | ||
} | ||
|
||
#footer_copyright { | ||
color: white; | ||
font-family: "poppins", sans-serif; | ||
} | ||
|
||
#footer_contact-us { | ||
font-family: "poppins", sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<hr class="separator"> | ||
<div class="footer"> | ||
<a href="mailto:bn745studiosmanagement@gmail.com">Contact Us</a> | ||
<p class="centered">Copyright © 2024 BlackNinja745 Studios</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
.header { | ||
height: 6%; | ||
width: 100%; | ||
padding: 0 8%; | ||
top: 0; | ||
left: 0; | ||
background: #080008; | ||
position: relative; | ||
} | ||
|
||
.header a { | ||
font-family: "poppins", sans-serif; | ||
} | ||
|
||
nav { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
|
||
.logo { | ||
width: 3vw; | ||
} | ||
|
||
.logo-title { | ||
margin: 0; | ||
left: -17vw; | ||
font-size: 1.8vw; | ||
padding: 0.4vw 0; | ||
font-family: "poppins", sans-serif; | ||
box-sizing: border-box; | ||
background-color: rgba(0, 0, 0, 0); | ||
text-decoration: none; | ||
color: #fff; | ||
position: relative; | ||
} | ||
|
||
.logo-container { | ||
padding: 0; | ||
margin: 0; | ||
width: 0; | ||
} | ||
|
||
.nav-links { | ||
padding: 1.6vw 0; | ||
} | ||
|
||
.nav-links li { | ||
display: inline-block; | ||
margin: 0 1vw; | ||
} | ||
|
||
.nav-links li a { | ||
font-size: 1vw; | ||
text-decoration: none; | ||
color: #fff; | ||
background-color: transparent; | ||
padding: 0.4vw 0; | ||
position: relative; | ||
} | ||
|
||
.separator { | ||
height: 0.05vw; | ||
margin: 0.1vw 0; | ||
background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(0, 0, 0, 0)), color-stop(0.5, #333333), to(rgba(0, 0, 0, 0))); | ||
background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0)); | ||
background: -moz-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0)); | ||
background: -o-linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0)); | ||
background: linear-gradient(left, rgba(0, 0, 0, 0), #333333, rgba(0, 0, 0, 0)); | ||
border: 0; | ||
} | ||
|
||
.separator:after { | ||
display: block; | ||
content: ''; | ||
height: 3vw; /* Relative height */ | ||
background-image: -webkit-gradient(radial, 50% 0%, 0, 50% 0%, 116, color-stop(0%, #cccccc), color-stop(100%, rgba(255, 255, 255, 0))); | ||
background-image: -webkit-radial-gradient(center top, farthest-side, #555555 0%, rgba(255, 255, 255, 0) 100%); | ||
background-image: -moz-radial-gradient(center top, farthest-side, #555555 0%, rgba(255, 255, 255, 0) 100%); | ||
background-image: -o-radial-gradient(center top, farthest-side, #555555 0%, rgba(255, 255, 255, 0) 100%); | ||
background-image: radial-gradient(farthest-side at center top, #555555 0%, rgba(255, 255, 255, 0) 100%); | ||
} |
Oops, something went wrong.