From e5e6a3220d48cb153f251028c6e0d7d93796f367 Mon Sep 17 00:00:00 2001 From: asauer Date: Sun, 14 Apr 2019 12:19:06 +0200 Subject: [PATCH] Redigate index page --- static/main.css | 11 +++++++++-- templates/base.html | 2 +- templates/index.html | 47 +++++++++++++++++++++++++++++++++----------- 3 files changed, 45 insertions(+), 15 deletions(-) diff --git a/static/main.css b/static/main.css index 39d6de6..1fbbaec 100644 --- a/static/main.css +++ b/static/main.css @@ -59,7 +59,7 @@ li a{ } .btn-group button { - background-color: #0D2B4A; /* Green background */ + background-color: #2E296C; /* Green background */ color: white; /* White text */ padding: 10px 24px; /* Some padding */ cursor: pointer; /* Pointer/hand icon */ @@ -73,7 +73,7 @@ li a{ /* Add a background color on hover */ .btn-group button:hover { - background-color: #03192F; + background-color: #7470A8; } input { @@ -83,6 +83,8 @@ input { /* Remove underline effect if links are inside a div (cf. index.html) */ div a { text-decoration: none; + color: #2E296C; + font-weight: bold; } /* logo image class */ @@ -100,6 +102,11 @@ header h1 { vertical-align: center; } +/* headline color for index.html */ +h2.index { + color: #7470A8; +} + /* view answers page: highlight chosen options */ .choice { font-weight: 900; diff --git a/templates/base.html b/templates/base.html index d6e125b..5bbfbbd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -14,7 +14,7 @@