Skip to content

Commit

Permalink
Make font size of project tag line consistent when resizing
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelMarcey committed Sep 24, 2016
1 parent 57cc6b7 commit ff38824
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docs/css/hack-tutorial.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ button, a.button {
cursor: pointer;
}

body {
font-size: 15px;
}

.CodeMirror {
font-size: 15px;
border: 1px solid #000;
Expand Down Expand Up @@ -92,9 +96,18 @@ button, a.button {
header.topbar nav ul {
margin: -10px -20px -20px;
}
body {
font-size: 15px;
}
}

@media only screen and (min-width: 720px) {
body {
font-size: 15px;
}
}

@media only screen and (max-width: 1020px) {
@media only screen and (min-width: 1020px) {
body {
font-size: 15px;
}
Expand Down

0 comments on commit ff38824

Please sign in to comment.