Created
August 13, 2020 21:44
-
-
Save Someguy123/98dfa1777aa311c9215ea09fc97fb570 to your computer and use it in GitHub Desktop.
Dark Cryptofolio CSS Theme
This file contains hidden or 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
/** | |
* Dark Cryptofolio.info Theme | |
* Written by Someguy123 ( https://github.com/Someguy123 ) | |
* License: X11 / MIT | |
*/ | |
body { | |
background-color: #3c3c3c; | |
} | |
table.tablesorter tbody tr.odd td { | |
background-color: #363636; | |
color: #fff; | |
} | |
table.tablesorter tbody td { | |
color: #FFF; | |
background-color: #423851; | |
} | |
table.tablesorter input, | |
table.tablesorter tbody select { | |
background: #000; | |
border-radius: 6px; | |
border: 1px solid #7e7d7d; | |
padding: 1rem; | |
} | |
table.tablesorter thead tr th, | |
table.tablesorter tfoot tr th { | |
background-color: #574a97; | |
border: 1px solid #333; | |
color: #fff; | |
} | |
body > div:nth-child(5) > div:nth-child(3) { | |
background-color: #574a97 !important; | |
border: 1px solid #333 !important; | |
color: #fff !important; | |
} | |
body > div:nth-child(5) > div:nth-child(3) input { | |
background: #333; | |
border-radius: 5px; | |
box-shadow: 0px 2px 10px 1px #000; | |
border: 1px solid #676767; | |
} | |
.navbar-default { | |
background-color: #1e1c50; | |
color: #fff !important; | |
} | |
.navbar-default a { | |
color: #fff !important; | |
} | |
body > div:nth-child(5) > div:nth-child(1) { | |
background-color: #196fde !important; | |
color: #fff !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment