diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-05-05 15:58:07 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-05-05 15:58:07 +0100 |
commit | 8a058ac45e6ef5a4c7cd7141332b7951bc01f49c (patch) | |
tree | 054ebf8ceb2f5f55cb4617e6a4abded57825d464 /static/style.css | |
parent | 5dd5ed8757c36a91e5031a3a55ea8a4291714691 (diff) | |
download | UKGenderPayGap-8a058ac45e6ef5a4c7cd7141332b7951bc01f49c.tar.gz UKGenderPayGap-8a058ac45e6ef5a4c7cd7141332b7951bc01f49c.zip |
Finished search bar, started adding <div>s for chart content
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index c527b3a..66e5829 100644 --- a/static/style.css +++ b/static/style.css @@ -16,6 +16,11 @@ a { color: black; font-weight: bold; padding-top: 1px; + text-decoration: none; +} + +a:hover { + text-decoration: underline; } aside { @@ -49,6 +54,32 @@ aside form input[type=submit] { padding-right: 2.5; } +/* #multicharts ul { + +} */ + +#multicharts ul li { + list-style-type: none; + width: 25%; + display: inline-block; + background-color: pink; + min-height: 250px; + margin-bottom: 7px; +} + +.chart_container { + display: flex; + align-items: center; + justify-content: center; +} + + +.minichart { + min-height: 220px; + width: 95%; + background-color: red; +} + footer { padding-left: 10%; padding-right: 10%; |