diff --git a/assets/css/screen.css b/assets/css/screen.css index 50e09da..b246633 100755 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -135,11 +135,11 @@ Used to define how every page is displayed. */ main { - min-height: calc(100vh - 400px); display: block; box-sizing: border-box; width: 100%; max-width: 100%; + min-height: calc(100vh - 400px); /* To avoid having the footer appearing in the middle of the page */ } .mind-content_main { @@ -739,6 +739,7 @@ img.mind-post_feature-image { font-size: 18px; color: rgb(200, 200, 200); box-sizing: border-box; + min-height: calc(100vh - 400px); /* To avoid having the div finish in the middle of the page, leaving an empty part */ } .mind-post_content h1, .mind-post_content h2, .mind-post_content h3, .mind-post_content h4, .mind-post_content h5, .mind-post_content h6 { @@ -1126,6 +1127,7 @@ div.mind-policy-popup { } } +/* BEGIN RESPONSIVE MEDIA QUERIES */ @media only screen and (max-width: 1300px) { h1 { @@ -1315,6 +1317,29 @@ div.mind-policy-popup { font-size: 15px; } + .mind-post_content pre, + .mind-post_content code, + .kg-card-hascaption figcaption, + .kg-bookmark-description { + font-size: 12px; + } + + .kg-bookmark-title { + font-size: 13px; + } + + .kg-bookmark-publisher { + font-size: 10px; + } + + .kg-bookmark-content { + padding: 10px 10px 0; + } + + .kg-bookmark-metadata { + margin-bottom: 10px; + } + .mind-global-navbar_primary img { margin-left: -35px; width: 25px; @@ -1363,6 +1388,11 @@ div.mind-policy-popup { font-size: 14px; } + .mind-post_content pre, .mind-post_content code { + font-size: 11px; + } + + .mind-site-footer_main { font-size: 16px; } diff --git a/package.json b/package.json index 81e0efd..831aa2a 100755 --- a/package.json +++ b/package.json @@ -30,6 +30,12 @@ }, "l": { "width": 1200 + }, + "xl": { + "width": 1600 + }, + "xxl": { + "width": 2000 } } } diff --git a/page.hbs b/page.hbs index f9470a0..9915181 100644 --- a/page.hbs +++ b/page.hbs @@ -16,7 +16,16 @@
{{#if feature_image}} - Feature Image + Feature Image + {{/if}}
{{content}} diff --git a/partials/post-card-big.hbs b/partials/post-card-big.hbs index a0e9f8d..05d063c 100644 --- a/partials/post-card-big.hbs +++ b/partials/post-card-big.hbs @@ -2,7 +2,10 @@ {{#if feature_image}} - Feature Image + Feature Image {{/if}}

{{primary_tag.name}} diff --git a/partials/posts-card-small.hbs b/partials/post-card-small.hbs similarity index 100% rename from partials/posts-card-small.hbs rename to partials/post-card-small.hbs diff --git a/post.hbs b/post.hbs index e6e7038..6cd84c3 100755 --- a/post.hbs +++ b/post.hbs @@ -27,7 +27,14 @@

{{#if feature_image}} - Feature Image {{/if}}
@@ -40,7 +47,7 @@ {{/post}}