Removes border from opening paragraph of a codes description and reduces footnotes sizing

This commit is contained in:
Samuel Ryan 2015-11-08 22:29:47 +00:00
parent 3bc23bdcd4
commit a0998e4613

View File

@ -98,8 +98,6 @@ code {
p:first-of-type {
font-size: 18px;
padding-bottom: 10px;
border-bottom: 2px solid #eee;
}
h1 {
@ -118,4 +116,27 @@ code {
letter-spacing: 0.5px;
text-transform: uppercase;
}
hr {
border-top: 1px solid #eee;
margin: 10px 0px;
}
ul {
font-size: 12px;
list-style-type: none;
li {
margin: 0px;
span:target {
background-color: #f9f9f9;
color: #222;
}
&:last-of-type {
margin-top: 6px;
}
}
}
}