commit 172f7336a14b3330d30f5f79ac35aabca01ac45b
parent da4f1f13783b05c1db70ee57d372b56f2c99d65e
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 16 Nov 2023 12:13:26 +0100
Pad page content left and right
This ensures that text is surrounded by empty spaces on all screens,
especially those of smartphones.
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/meso.css b/meso.css
@@ -7,7 +7,8 @@ body {
background-color: #fff;
color: #000;
font-family: "Liberation Sans",sans-serif;
- margin: 1em auto; /*auto;*/
+ margin: 1em auto;
+ padding: 0em 1em 0em 1em;
text-align: left;
font-size: 1em;
max-width: 50em;