This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move discord page css to its own file
- Loading branch information
1 parent
2bbf09c
commit 00c56a7
Showing
2 changed files
with
39 additions
and
41 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,39 @@ | ||
body, html { | ||
overflow: hidden; | ||
margin: 0; | ||
height: 100%; | ||
position: relative; | ||
color: white; | ||
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; | ||
font-size: 25px; | ||
background-color: rgba(0, 31, 0, 0.5); | ||
} | ||
|
||
.bgimg { | ||
background-image: url('https://www.minecraft.net/content/dam/games/earth/key-art/SunsetMCE_KeyArt_1170_NoLogo.jpg'); | ||
filter: blur(10px); | ||
height: 100%; | ||
background-position: center; | ||
background-size: cover; | ||
} | ||
|
||
.middle { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
text-align: center; | ||
} | ||
|
||
hr { | ||
margin: auto; | ||
width: 40%; | ||
} | ||
|
||
a { | ||
color: #5566ff; | ||
} | ||
|
||
a:hover { | ||
color: #5555ff; | ||
} |
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