diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2023-05-07 21:03:25 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2023-05-07 21:03:25 +0100 |
commit | 1eea185d337eadd7a5309a707d8f0c5cd0d85d9c (patch) | |
tree | 0552df0f460e10f709bb342ab41822912ace6a9c /static/style.css | |
parent | f77e28a8b4937b8119761d27dde323b5b982e00a (diff) | |
download | UKGenderPayGap-1eea185d337eadd7a5309a707d8f0c5cd0d85d9c.tar.gz UKGenderPayGap-1eea185d337eadd7a5309a707d8f0c5cd0d85d9c.zip |
Added some charts
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 44 |
1 files changed, 42 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 4e89888..28d53c7 100644 --- a/static/style.css +++ b/static/style.css @@ -49,6 +49,31 @@ aside form input[type="submit"] { border: 2px solid black; } +#filterform h5 { + margin-top: 10px; + margin-bottom: 5px; +} + +label { + font-size: x-small; +} + +.collapsable { + display: none; +} + +.collapsetoggle { + color: black; + font-weight: bold; + padding-top: 1px; + text-decoration: none; +} + +.collapsetoggle#hover { + cursor: pointer; + text-decoration: underline; +} + #main_content { padding-left: 2.5%; padding-right: 2.5; @@ -62,23 +87,38 @@ aside form input[type="submit"] { list-style-type: none; width: 25%; display: inline-flex; - background-color: pink; + /* background-color: pink; */ min-height: 250px; margin-bottom: 7px; overflow: hidden; flex-direction: column; justify-content: space-between; + /* border-color: black; + border-width: 2px; + border-radius: 1; + border-style: ridge; */ } .chart_container { display: flex; flex-direction: row-reverse; } + .minichart { min-height: 220px; width: 100%; margin: 0.5rem; - background-color: red; + /* background-color: red; */ +} + +#singlechart { + /* background-color: pink; */ + width: 70%; + min-height: 70%; +} + +.chart { + } .bottom_text { |