Created
September 3, 2016 02:09
-
-
Save stoffie/026c185871495f1d7730e258854ab658 to your computer and use it in GitHub Desktop.
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
:root { | |
--black: black; | |
--white: white; | |
--red: #05e; | |
--green: red; | |
} | |
body { | |
background-color: var(--red); | |
color: var(--white); | |
font-family: verdana, arial, helvetica, sans-serif; | |
font-size: 13px; | |
line-height: 18px; | |
margin: 20px; | |
} | |
body > table { | |
background-color: var(--black); | |
color: var(--white); | |
border-color: var(--black); | |
border-style: solid; | |
padding: 1px; | |
border-radius: 5px; | |
border-width: 5px; | |
} | |
p#notice { | |
display: none; | |
} | |
p, ol, ul, td { | |
font-family: verdana, arial, helvetica, sans-serif; | |
font-size: 13px; | |
line-height: 18px; | |
margin: 33px; | |
} | |
pre { | |
background-color: #eee; | |
padding: 10px; | |
font-size: 11px; | |
} | |
h1 { | |
color: var(--black); | |
border-color: var(--white); | |
border-style: solid; | |
border-width: 10px; | |
border-radius: 10px; | |
background-color: var(--white); | |
} | |
a { | |
color: var(--black); | |
background-color: var(--white); | |
border-radius: 5px; | |
padding: 5px; | |
&:visited { | |
color: var(--green); | |
background-color: var(--white); | |
} | |
&:hover { | |
color: var(--red); | |
background-color: var(--white); | |
} | |
} | |
th { | |
padding-bottom: 5px; | |
padding-right: 40px; | |
} | |
td { | |
background-color: var(--white); | |
border-color: var(--white); | |
color: var(--black); | |
border-style: solid; | |
border-width: 5px; | |
border-radius: 5px; | |
} | |
div { | |
&.field, &.actions { | |
margin-bottom: 10px; | |
} | |
} | |
label { | |
display: block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment