From c6b1a1fda3da5dbb2749d7b08fa72c40f95377a4 Mon Sep 17 00:00:00 2001 From: blendoit Date: Mon, 27 Jan 2020 18:06:07 -0800 Subject: Change global font size to 24. --- app/placeholder_news.py | 2 +- app/static/styles/default.css | 1 + app/static/styles/home.css | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/placeholder_news.py b/app/placeholder_news.py index 7b2d7fe..262bd65 100644 --- a/app/placeholder_news.py +++ b/app/placeholder_news.py @@ -8,7 +8,7 @@ news = [{ 'date': 'Dec. 25th, 2019', 'content': - "Ah, this is a public personal update.\n It's pretty long, because this enables testing layouts that adapt to posts with a lot of content. Do we want the content to wrap around? Should we implement a content clipping feature?" + "Ah, this is a public personal update.\n It's pretty long, because this enables testing layouts that adapt to posts with a lot of content. Do we want the content to wrap around? Should we implement a content clipping feature? Is there a limit to how much placeholder text one can view at a time on the website? As the great Nowaar once said, 'We can throw shapes, but you are not in my circle, bahaha.'" }, { 'author': 'Country_V', 'date': 'Dec. 24th, 2019', diff --git a/app/static/styles/default.css b/app/static/styles/default.css index 069588d..4f56c17 100644 --- a/app/static/styles/default.css +++ b/app/static/styles/default.css @@ -6,6 +6,7 @@ --no: rgba(255, 0, 0, 0.7); background-image: url(../img/home.png); background-repeat: repeat-x; + font-size: 20; } * { diff --git a/app/static/styles/home.css b/app/static/styles/home.css index a188754..a5dcbec 100644 --- a/app/static/styles/home.css +++ b/app/static/styles/home.css @@ -28,8 +28,8 @@ .post-wrapper { position: relative; - max-height: 20%; - max-width: 30%; + max-height: 25%; + max-width: 33%; } .post { -- cgit v1.2.3