diff --git a/app.py b/app.py index e4543e6..2bb08c9 100644 --- a/app.py +++ b/app.py @@ -11,7 +11,7 @@ from db_schema import Projects, db -dev = False # if true then uses config.txt instead of environment variables +dev = False # if true then uses config.txt to set environment variables if dev: with open("config.txt", "r") as f: for line in f.readlines(): diff --git a/static/css/projectpage.css b/static/css/projectpage.css index e798a35..9a6cf45 100644 --- a/static/css/projectpage.css +++ b/static/css/projectpage.css @@ -1,5 +1,5 @@ .projectarticle { - max-width: 80vw; + width: 50vw; margin: auto; } @@ -24,6 +24,7 @@ flex-direction: column; padding-left: 3vw; width: 50%; + text-align: justify; } .description h1 { @@ -32,6 +33,10 @@ margin-top: 1vh; } +.fullblog p { + text-align: justify; +} + .fullblog a { color: var(--accent); text-decoration: none; @@ -63,6 +68,7 @@ @media screen and (max-width: 500px) { .projectarticle { padding-top: 10vh; + width: 80vw; } .imgtitle { @@ -72,6 +78,7 @@ .imgtitle img { max-height: 20vh; max-width: 100%; + margin: auto; } .description {