Skip to content

Commit

Permalink
fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
firemark committed Aug 31, 2019
1 parent 909ac15 commit 7050822
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion content/extra/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ main a:active { color: #8bd7ff; }

.cell {
float: left;
width: 33%;
width: 100%;
}

.admonition.danger {
Expand All @@ -37,6 +37,9 @@ main a:active { color: #8bd7ff; }
}

@media screen and (min-width: 768px) {
.cell {
width: 50%;
}
ul.list li {
text-align: left;
margin-left: 20%;
Expand All @@ -52,5 +55,11 @@ main a:active { color: #8bd7ff; }
text-align: left;
margin-left: 20%;
}
}


@media screen and (min-width: 1200px) {
.cell {
width: 33%;
}
}

0 comments on commit 7050822

Please sign in to comment.