-
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.
- Loading branch information
1 parent
bd52c46
commit 706fd6e
Showing
14 changed files
with
1,164 additions
and
2 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,114 @@ | ||
body { | ||
background-color:#00181E; | ||
color:#86C351; | ||
} | ||
|
||
/* unvisited link */ | ||
a:link { | ||
color: #F7ED00; | ||
} | ||
|
||
/* visited link */ | ||
a:visited { | ||
color: #F7ED00; | ||
} | ||
|
||
/* mouse over link */ | ||
a:hover { | ||
color: #F7ED00; | ||
} | ||
|
||
/* selected link */ | ||
a:active { | ||
color: #F7ED00; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
} | ||
|
||
td, th { | ||
text-align: left; | ||
padding: 8px; | ||
} | ||
|
||
tr:nth-child(even) { | ||
background-color: #7A0000; | ||
} | ||
|
||
|
||
/* While this part was cool, I decided to remove it due to accessibility reasons, but what it did was remove the underlines for links | ||
a:link { text-decoration: none; } | ||
a:visited { text-decoration: none; } | ||
a:hover { text-decoration: underline; } | ||
a:active { text-decoration: underline; } */ | ||
|
||
/* What font to use */ | ||
h1, h2, h3, a, li, th, br, ubuntu, p, blockquote, center { | ||
font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
pre, tt, xmp, ubuntu-mono { | ||
font-family: monospace, "Ubuntu Monospace", Courier; | ||
} | ||
|
||
a { | ||
text-decoration: underline; | ||
} | ||
|
||
a:hover { | ||
text-decoration: none; | ||
} | ||
|
||
/* Thnak you to Job of joppiesaus.neocities.org for not only writing the following CSS, but also allowing me to use it */ | ||
/* Job has been a friend of mine for a few years now, and it would really make me happy if you checked out their website */ | ||
figure { | ||
display: block; | ||
margin: 0 auto; | ||
max-width: 95vw; | ||
border: 1px solid #999; | ||
background: #000; | ||
background: rgba(0, 0, 0, 0.5); | ||
width: min-content; | ||
border-radius: 2px; | ||
} | ||
figure { | ||
float: right; | ||
max-width: 33vw; | ||
margin: 3px; | ||
margin-left: 5px; | ||
margin-right: 0; | ||
} | ||
|
||
/* The Following code has been written by Randy and has given his consent for me to use it */ | ||
/* I am unsure if the following code *can* even be copyrighted due to how generic it is */ | ||
blockquote { | ||
border-left: 0.1em solid #cc66ff; | ||
padding-left: 0.3em; } | ||
|
||
/* The following has been taken from the below URL */ | ||
/* https://learn2dev.com/articles/css-shorts/spoilers */ | ||
.spoiler-text { | ||
background: black; | ||
color: transparent; | ||
cursor: help; | ||
user-select: none; | ||
transition: background 0.3s ease 0.2s, color 0.2s ease 0.25s; | ||
} | ||
|
||
.spoiler-text:hover, | ||
.spoiler-text:focus { | ||
background: #e8e8e8; | ||
color: inherit; | ||
} | ||
|
||
/* Following taken from /accessibility/#autoplay part of the website */ | ||
.flashing { | ||
-webkit-filter: blur(5px); /* For Safari 6.0 - 9.0 */ | ||
filter: blur(5px); | ||
} | ||
|
||
.flashing:hover { | ||
-webkit-filter: none; | ||
filter: none; | ||
} |
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,97 @@ | ||
/* Colors taken from PLAYPAL */ | ||
/* https://lospec.com/palette-list/playpal */ | ||
|
||
body { | ||
max-width: 800px ; | ||
margin: auto ; | ||
background: url(r_bsp.c.png); | ||
background-color:hsl(240, 100%, 6.86%); | ||
color:#8f8fff; | ||
} | ||
|
||
h1 { | ||
text-align: left ; | ||
} | ||
|
||
/* unvisited link */ | ||
a:link { | ||
color: #d37373; | ||
} | ||
|
||
/* visited link */ | ||
a:visited { | ||
color: #67df5f; | ||
} | ||
|
||
/* mouse over link */ | ||
a:hover { | ||
color: #c76363; | ||
} | ||
|
||
/* selected link */ | ||
a:active { | ||
color: #bf5b5b; | ||
} | ||
|
||
/* The following was written by devils.gay - thank you */ | ||
uppercase,yell { | ||
text-transform: uppercase; | ||
} | ||
|
||
/* What font to use */ | ||
@font-face { | ||
font-family: 'Poppins'; | ||
src: url('../fonts/Poppins-Regular.otf'); | ||
|
||
|
||
font-family: 'Cascadia'; | ||
src: url('../fonts/Cascadia.ttf'); | ||
} | ||
|
||
h1, h2, h3, a, li, th, br, p, em, center { | ||
font-family: 'Poppins', sans-serif; | ||
} | ||
|
||
cascadia, Cascadia { | ||
font-family: 'Cascadia'; | ||
} | ||
|
||
pre, tt, xmp { | ||
font-family: "Cascadia", monospace, Courier; | ||
} | ||
|
||
/* Thank you to Job of joppiesaus.neocities.org for not only writing the following CSS, but also allowing me to use it */ | ||
/* Job has been a friend of mine for a few years now, and it would really make me happy if you checked out their website */ | ||
figure { | ||
display: block; | ||
margin: 0 auto; | ||
max-width: 95vw; | ||
border: 1px solid #999; | ||
background: #000; | ||
background: rgba(0, 0, 0, 0.5); | ||
width: min-content; | ||
border-radius: 2px; | ||
} | ||
|
||
figure { | ||
float: right; | ||
max-width: 33vw; | ||
margin: 3px; | ||
margin-left: 5px; | ||
margin-right: 0; | ||
} | ||
|
||
.tag { | ||
padding: 10px; | ||
border: 5px solid #4b4b4b; | ||
margin: 0; | ||
background-color: #430000; | ||
} | ||
|
||
|
||
/* This removes all of the underlines from links. */ | ||
/* Usually, I would not use this, but as the colors on the page are very different, it should be fine, accessibility-wise. */ | ||
/* https://freecodecamp.org/news/remove-underline-from-link-in-css */ | ||
a { | ||
text-decoration: none; | ||
} |
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,72 @@ | ||
body { | ||
background: url(irc_bg.png); | ||
background-size: auto; | ||
background-repeat: auto; | ||
background-position: center; | ||
background-attachment: fixed; | ||
background-color:#00181E; | ||
color:#86C351; | ||
} | ||
|
||
/* unvisited link */ | ||
a:link { | ||
color: #F7ED00; | ||
} | ||
|
||
/* visited link */ | ||
a:visited { | ||
color: #FA00F8; | ||
} | ||
|
||
/* mouse over link */ | ||
a:hover { | ||
color: #B500FA; | ||
} | ||
|
||
pre,tt,br { margin:0 } | ||
|
||
/* selected link */ | ||
a:active { | ||
color: #F7ED00; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
} | ||
|
||
td, th { | ||
text-align: left; | ||
padding: 8px; | ||
} | ||
|
||
tr:nth-child(even) { | ||
background-color: #7A0000; | ||
} | ||
|
||
/* What font to use */ | ||
h1, h2, h3, a, th { | ||
font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
pre, tt, xmp { | ||
font-family: monospace, "Ubuntu Monospace", Courier; | ||
} | ||
|
||
p { | ||
font-family: Ubuntu, "Noto Sans", "Liberation Sans", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
a { | ||
text-decoration: underline; | ||
} | ||
|
||
a:hover { | ||
text-decoration: none; | ||
} | ||
|
||
.tag { | ||
padding: 10px; | ||
border: 5px solid gray; | ||
margin: 0; | ||
background-color: #3D6775; | ||
} |
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,23 @@ | ||
body { | ||
color:#0F92FF; | ||
} | ||
|
||
/* unvisited link */ | ||
a:link { | ||
color: #017FFF; | ||
} | ||
|
||
/* visited link */ | ||
a:visited { | ||
color: #067FFF; | ||
} | ||
|
||
/* mouse over link */ | ||
a:hover { | ||
color: #0F7FED; | ||
} | ||
|
||
/* selected link */ | ||
a:active { | ||
color: #0F7FB6; | ||
} |
Oops, something went wrong.