diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 427b837..c86415c 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -5,6 +5,7 @@
{{ block "title" . }}{{ .Site.Title }}{{ end }}
+
diff --git a/static/styles.css b/static/styles.css
index c17dfde..78ebef6 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -104,14 +104,6 @@ hr {
aside h2, .with-divider { background: url(/widget-divider.png); background-repeat: repeat-x; background-position: center; }
aside h2 span, .with-divider span { background-color: white; padding-right: 0.5rem; }
-@media (max-width: 768px) {
- body {
- grid-template-areas: "header" "navigation" "main" "sidebar" "footer";
- grid-template-columns: 1fr;
- }
- aside { border-left: none; padding-left: 0; }
-}
-
.carrousel {
position: relative;
}
@@ -217,3 +209,13 @@ aside h2 span, .with-divider span { background-color: white; padding-right: 0.5r
.carrousel #v4:checked ~ .carrousel-controls .carrousel-visible-control[for="v4"],
.carrousel #v5:checked ~ .carrousel-controls .carrousel-visible-control[for="v5"]
{ background-color: #C4302B !important; }
+
+@media (max-width: 768px) {
+ body {
+ grid-template-areas: "header" "navigation" "main" "sidebar" "footer";
+ grid-template-columns: 1fr;
+ }
+ aside { border-left: none; padding-left: 0; }
+
+ .articles img { max-width: 100px; }
+}