Fixing visual bug in box class

This commit is contained in:
kristoferjoseph
2013-12-28 15:36:19 -08:00
parent d997e1ca8b
commit 4d30324c56
3 changed files with 5 additions and 5 deletions

View File

@@ -236,6 +236,7 @@ h6 {
h2 {
font-size: 2rem;
margin: 1rem 0;
}
:focus {
@@ -244,7 +245,7 @@ h2 {
}
h2+p {
margin: -1.25rem 0 2rem 0;
margin: 0 0 2rem;
}
a {
@@ -354,7 +355,6 @@ code {
box-sizing: border-box;
min-height: 1rem;
margin-bottom: 0;
padding: .5rem;
background: #007FFF;
border: 1px solid #FFF;
border-radius: 2px;

2
css/index.min.css vendored

File diff suppressed because one or more lines are too long

View File

@@ -14,13 +14,14 @@ h1, h2, h3, h4, h5, h6 {
}
h2 {
font-size: 2rem;
margin: 1rem 0;
}
:focus {
outline-color: transparent;
outline-style: none;
}
h2 + p {
margin: -1.25rem 0 2rem 0;
margin: 0 0 2rem 0;
}
a {
text-decoration: none;
@@ -105,7 +106,6 @@ code {
box-sizing: border-box;
min-height: 1rem;
margin-bottom: 0;
padding: 0.5rem;
background: #007FFF;
border: 1px solid #FFF;
border-radius: 2px;