Last active
March 31, 2016 23:38
-
-
Save Zyst/dc8c4ddabc4b65afb6dc536c314a5e24 to your computer and use it in GitHub Desktop.
The CSS I use for Clearly, saving it here to have access to it in case I need a backup
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
/* | |
Background color: #222233 | |
Foreground color: #D1D1D1 | |
Links color: #64BEFA | |
Base font size: 24px | |
Line height: 1.5em | |
Line width: 36em | |
Monospace font: Menlo, Monospace, Consolas | |
Body/header font: BlinkMacSystemFont (Won't work outside of OS X) | |
Base CSS: Newsprint | |
*/ | |
#sidebar { | |
display: none; | |
} | |
#background { | |
right: 0px !important; | |
} | |
#accountFooter { | |
display: none !important; | |
} | |
table { | |
background: #004b7a; | |
margin: 10px auto; | |
border: none; | |
box-shadow: 1px 1px 1px rgba(0, 0, 0, .75); | |
border-spacing: 0; | |
font: inherit; | |
text-align: center; | |
} | |
table tr td, | |
table tr th, | |
table thead th { | |
margin: 3px; | |
padding: 5px; | |
color: #ccc; | |
border: 1px solid rgba(255, 255, 255, .25); | |
background: rgba(0, 0, 0, .1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment