From 2eae3a862099f5daba75c95f733a3d0ed9ab141c Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Sun, 18 Mar 2018 15:57:53 -0400 Subject: [PATCH] use a css file, minor cleanups --- build/shared/lib/welcome/style.css | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 build/shared/lib/welcome/style.css diff --git a/build/shared/lib/welcome/style.css b/build/shared/lib/welcome/style.css new file mode 100644 index 000000000..75f557f20 --- /dev/null +++ b/build/shared/lib/welcome/style.css @@ -0,0 +1,47 @@ +* { + margin: 0; + padding: 0; +} + +body { + padding: 20px; + font-family: "Processing Sans Pro", sans-serif; +} + +h1 { + margin-bottom: 0; + /* can't get the Semibold to work properly */ + font-family: "Processing Sans Pro", sans-serif; + font-size: 1.3em; /*16px;*/ + font-weight: normal; +/* + font-size: 1.15em; + font-family: "Processing Sans Pro", sans-serif; + font-weight: 600; +*/ +} + +p, td { + margin-bottom: 0; + font-size: 0.975em; /*11px*/ + line-height: 1.05em; /*12px*/ +} + +table { + margin-top: 10px; + margin-bottom: 0; +} + +p.inset, table.inset { + padding: 10px; + background-color: rgb(224, 253, 251); +} + +a { + color: #2c7bb5; + text-decoration: none; +} + +#startButton { + margin-left: 50px; +} \ No newline at end of file