Skip to content

Commit

Permalink
Fix some CSS Lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
semmypurewal committed Dec 8, 2013
1 parent 7574e8b commit 3ff0857
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions Chapter5/Amazeriffic/stylesheets/style.css
Expand Up @@ -12,7 +12,7 @@ header .container, main .container, footer .container {
margin: auto;
}

h1, h2, h3, h4, h5, h6 {
h2, h4, h6 {
font-family: 'Ubuntu', sans-serif;
}

Expand All @@ -23,8 +23,8 @@ header {
border-bottom: 1px solid #ddd;
}

header h1 {

h1 {
font-family: 'Ubuntu', sans-serif;
font-style: italic;
font-size: 3em;
color: #b33;
Expand Down Expand Up @@ -59,7 +59,7 @@ main {
padding: 5px;
}

.tabs a span.active {
.tabs a .active {
background: #eee;
}

Expand All @@ -69,15 +69,16 @@ main .content {
background: #eee;
}

main .content h3 {
h3 {
font-family: 'Ubuntu', sans-serif;
border-radius: 5px;
color: #999;;
background: #ddd;
padding: 5px;
margin: 20px 0 10px 0;
}

main .content h3:first-child {
h3:first-child {
margin-top: 0;
}

Expand All @@ -100,7 +101,7 @@ main .content button {

main .content p {
color: red;
margin: 30px 0 0px 0;
margin: 30px 0 0 0;
}

main .content p:first-child {
Expand All @@ -123,7 +124,8 @@ footer .contact {
width: 570px;
}

footer h5 {
h5 {
font-family: 'Ubuntu', sans-serif;
font-size: 1.25em;
margin-bottom: 20px;
}
Expand Down

0 comments on commit 3ff0857

Please sign in to comment.