Created
February 25, 2021 10:55
-
-
Save spyesx/56cc509aab84247f5b61125ff0a1a47a to your computer and use it in GitHub Desktop.
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
body{ | |
background:none; | |
font-family:arial; | |
max-width:1440px; | |
margin:0 auto; | |
font-size:16px; | |
} | |
h1,h2{ | |
color:white; | |
background:#293293; | |
padding:2rem; | |
margin:1rem 0; | |
} | |
dl{ | |
display:grid; | |
grid-template-columns:40rem auto; | |
} | |
dt, dd{ | |
border-top:1px grey solid; | |
border-bottom:1px grey solid; | |
padding:10px 0; | |
margin:0; | |
} | |
dt{ | |
font-weight:bold; | |
} | |
dd, p, li, th, td{ | |
line-height:1.6rem; | |
} | |
dt:hover, dt:hover + dd{ | |
background:#ACEACE; | |
} | |
b, tt{ | |
font-family:courier; | |
font-weight:200; | |
background:rgba(0,0,0,0.1); | |
display:inline-block; | |
padding:2px 4px; | |
color:#E1194B; | |
border-radius:5px; | |
} | |
li{ | |
margin-bottom:1.4rem; | |
} | |
table{ | |
border-collapse: collapse; | |
} | |
th, td{ | |
border:1px grey solid; | |
padding:20px 10px; | |
} | |
th{ | |
width:8rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment