Skip to content

Commit

Permalink
Remove padding on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyral committed May 2, 2015
1 parent 67da318 commit c2a9807
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ body {
.container .inner .content {
margin: 0px 48px;
padding: 32px;
min-width: 768;
}

/* A bit of resizing of the main content items */
Expand All @@ -69,7 +70,7 @@ i.fa:hover {
color: #00C5DB;
}

/* Make our font sizes look better and fit the page on mobile */
/* Make the site look better and fit the page on mobile */
@media only screen and (max-width: 768px) {
h1 {
font-size: 2em;
Expand All @@ -80,4 +81,9 @@ i.fa:hover {
p {
font-size: .8em;
}
.container .inner .content {
margin: 0px;
padding: 0px;
min-width: 320px;
}
}

0 comments on commit c2a9807

Please sign in to comment.