-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
5 changed files
with
256 additions
and
87 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,100 @@ | ||
/* | ||
Tier Away is a website that helps users create unique tier lists. No accounts, no hassle. | ||
Copyright (C) 2022 Con Godsted | ||
*/ | ||
/*body styling with the Theme*/ | ||
|
||
html { | ||
scrollbar-color: #393939 #1f1f1f; | ||
} | ||
/*fancy header*/ | ||
header { | ||
border: transparent; | ||
border-bottom: #d22d59 solid; | ||
} | ||
header button { | ||
color: #6b6b6b; | ||
border-color: #393939; | ||
} | ||
|
||
|
||
|
||
/*6b6b6b BORDER*/ | ||
#button-panel button:hover, .export-visible a:hover, #urlselect:focus, #urlselect:hover, #text-select:focus, #text-select:hover, #fileselect:hover, #url-upload button:hover, #add-text-button:hover, #add-tier-button:hover, #add-tier-colour:hover { | ||
border-color: #6b6b6b; | ||
} | ||
/*TRANSPARENT BORDER*/ | ||
#fileselect::file-selector-button, #tier-move button, .del-tier, #change-theme-button { | ||
border-color: transparent; | ||
} | ||
|
||
|
||
|
||
/*TRANSPARENT BACKGROUND*/ | ||
#fileselect::file-selector-button, #tier-move button, .del-tier, #change-theme-button { | ||
background-color: transparent; | ||
} | ||
/*WHITE BACKGROUND*/ | ||
.export-visible a { | ||
background-color: white; | ||
} | ||
/*222222 BORDER*/ | ||
.hidden, .dropshown, .export-visible { | ||
border-color: #222222; | ||
} | ||
/*393939 BORDER*/ | ||
#button-panel button, .export-visible a, .hidden button, .export-visible a, header button:hover, #url-upload button, #text-add button, #add-tier-button, #add-tier-colour, #urlselect, #text-select, #add-tier, #fileselect { | ||
border-color: #393939; | ||
} | ||
/*BLACK BORDER*/ | ||
footer, table, tr, td, th { | ||
border-color: black; | ||
} | ||
|
||
|
||
|
||
|
||
/*2b2b2b BACKGROUND*/ | ||
#fileselect:hover, #url-upload button:hover, .export-visible a:hover, #add-text-button:hover, #add-tier-button:hover, #add-tier-colour:hover, #urlselect:focus, #urlselect:hover, #text-select:focus, #text-select:hover { | ||
background-color: #2b2b2b; | ||
} | ||
|
||
/*18181b BACKGROUND*/ | ||
body, header button { | ||
background-color: #18181b; | ||
} | ||
/*1f1f1f BACKGROUND*/ | ||
.dropshown, .hidden, .export-visible, .tiersettings, #tablehead { | ||
background-color: #1f1f1f; | ||
} | ||
/*222222 BACKGROUND*/ | ||
#url-upload button, #text-add button, #add-tier-button, #add-tier-colour, #urlselect, #text-select, #add-tier, #button-panel button, .hidden button, .export-visible a, #button-panel button, .hidden button, header button:hover { | ||
background-color: #222222; | ||
} | ||
/*393939 BACKGROUND*/ | ||
table { | ||
background-color: #393939; | ||
} | ||
/*BLACK BACKGROUND*/ | ||
footer, #image-options, header { | ||
background-color: black; | ||
} | ||
|
||
|
||
/*WHITE TEXT*/ | ||
#change-theme-button, #github, #new:hover, #tier-move button:hover, .del-tier:hover, footer a, body, header button:hover, #button-panel button, .hidden button, .export-visible a, #fileselect::file-selector-button, #url-upload button, #text-add button, #add-tier-button, #add-tier-colour, #urlselect, #text-select, #add-tier { | ||
color: white; | ||
} | ||
|
||
/*RED TEXT*/ | ||
#github:hover, footer a:hover, #change-theme-button:hover { | ||
color: #d22d59 | ||
} | ||
/*6b6b6b TEXT*/ | ||
#trash, #new, #tier-move button, .del-tier { | ||
color: #6b6b6b; | ||
} | ||
/*BLACK TEXT*/ | ||
th:not(.header) { | ||
color: black | ||
} |
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
Oops, something went wrong.