diff --git a/static/css/style.css b/static/css/style.css index 482ac7b..09f9da1 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -23,6 +23,13 @@ font-weight: normal; font-style: normal; } +@font-face { +font-family: 'Roboto Regular Italic'; +src: url('webfonts/Roboto_Regular/Roboto-Italic.ttf') format('truetype'); +font-weight: normal; +font-style: normal; +} + /***************** EMERGENCY BUTTON AND MOCKUPS****************/ div#backend-data-button{ background-color: #1B42D8; @@ -92,7 +99,11 @@ body { margin: 0; padding: 0; } - + body i { + font-family: 'Roboto Regular'; + font-weight: normal; + font-style: italic; + } /*Header*/ div#header{ @@ -833,7 +844,14 @@ div.home-show-wrapper{ justify-content: center; } -div.home-show-wrapper:hover { +div.home-show-wrapper a{ + display: flex; + align-items: center; + justify-content: center; + width: 100%; +} + +div.home-show-wrapper a:hover { color: white; background-color: black; } @@ -886,7 +904,7 @@ div.home-show-wrapper:hover { } .mw-parser-output blockquote p { font-family: Roboto Condensed; - font-size: 32px; + font-size: calc(20px + (30 - 20) * ((100vw - 768px) / (1400 - 768))); font-weight: normal; font-stretch: condensed; font-style: normal; @@ -895,7 +913,7 @@ div.home-show-wrapper:hover { color: var(--blue-blue); } .mw-parser-output blockquote + p { - grid-column-start: 8; + grid-column-start: 9; grid-column-end: 18; grid-row-start: 2; grid-row-end: 2; @@ -903,7 +921,7 @@ div.home-show-wrapper:hover { .mw-parser-output p { margin: 0px 0px 30px 0px; } -.mw-parser-output h2 { +/*.mw-parser-output h2 { font-family: Roboto Condensed; font-size: calc(16px + (20 - 16) * ((100vw - 768px) / (1400 - 768))); font-weight: normal; @@ -912,8 +930,8 @@ div.home-show-wrapper:hover { letter-spacing: 1.13px; color: var(--black); margin: 0px 0px 30px 0px; -} -h2:nth-of-type(1), .Heading_C { +}*/ +h2:nth-of-type(1), .Heading_C, .mw-parser-output h2, h2 { font-family: Roboto Condensed; font-size: calc(20px + (30 - 20) * ((100vw - 768px) / (1400 - 768))); font-weight: normal; @@ -921,9 +939,11 @@ h2:nth-of-type(1), .Heading_C { font-style: normal; line-height: 40px; letter-spacing: 1.13px; - color: var(--black); + color: var(--black); + margin: 0px 0px 30px 0px; + } -h2:nth-of-type(2), .Heading_D { +h2:nth-of-type(2), .Heading_D,.mw-parser-output h3, h3 { font-family: Roboto Condensed; font-size: calc(22px + (25 - 22) * ((100vw - 768px) / (1400 - 768))); font-weight: normal; @@ -933,7 +953,7 @@ h2:nth-of-type(2), .Heading_D { letter-spacing: 1.13px; color: var(--black); } -h2:nth-of-type(3), .Heading_E, .mw-parser-output h3 { +.Heading_E { font-family: Roboto Condensed; font-size: calc(16px + (20 - 16) * ((100vw - 768px) / (1400 - 768))); font-weight: normal; @@ -962,11 +982,11 @@ h2:nth-of-type(3), .Heading_E, .mw-parser-output h3 { list-style-type: circle; margin: 0px 0px 30px 56px; } -.mw-parser-output p a img { +.mw-parser-output p img { width: 100%; height: auto; } -a img, a img::before { +.mw-parser-output img { font-family: Roboto Regular; font-size: calc(12px + (20 - 12) * ((100vw - 768px) / (1400 - 768))); text-decoration: none; @@ -1069,6 +1089,11 @@ div.browsebycategory-categories a { } +div.browsebycategory-categories:hover { + color: white; + background-color: black; +} + /************ SEARCH TOOLS ************/ diff --git a/templates/home.html b/templates/home.html index 855932f..0fa5400 100644 --- a/templates/home.html +++ b/templates/home.html @@ -33,7 +33,8 @@
@@ -82,7 +83,7 @@ -
BROWSE THE FULL ARCHIVE
+
BROWSE THE FULL ARCHIVE
@@ -101,8 +102,8 @@ home-recent-items $ShowHideMore = $('#home-recent-grid'); $ShowHideMore.each(function() { var $times = $(this).children('.home-recent-items'); - if ($times.length > 9) { - $ShowHideMore.children(':nth-of-type(n+9)').addClass('moreShown').hide(); + if ($times.length > 13) { + $ShowHideMore.children(':nth-of-type(n+13)').addClass('moreShown').hide(); $(this).find('span.home-show').addClass('more-times').html('SHOW MORE'); } });