spsp

Repository for the "Simplified Perl Status Poster" (SPSP).
git clone git://git.samirparikh.com/spsp
Log | Files | Refs | README

commit ea78b1133f19605a07f3f96e042a47c767d98eee
parent ce671c8f10d70c5b57bf92244cc551dec80071a0
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Fri, 10 Feb 2023 13:53:21 +0000

add css styling

Diffstat:
Ahtml/styles/style.css | 32++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+), 0 deletions(-)

diff --git a/html/styles/style.css b/html/styles/style.css @@ -0,0 +1,32 @@ +html { + font-size: 10px; + font-family: 'Open Sans', sans-serif; + /* + background-color: #2B4560; + */ +} + +body { + width: 600px; + margin: 0 auto; + /* + background-color: #2F6D80; + */ + padding: 0 20px 20px 20px; + border: 5px solid black; +} + +h1 { + margin: 0; + padding: 20px 0; + text-align: center; + /* + color: #00539F; + */ +} + +p { + font-size: 16px; + line-height: 2; + letter-spacing: 1px; +}