diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/scripts.js | 4 | ||||
-rw-r--r-- | static/style.css | 31 |
2 files changed, 34 insertions, 1 deletions
diff --git a/static/scripts.js b/static/scripts.js index c6c3320..dc43112 100644 --- a/static/scripts.js +++ b/static/scripts.js @@ -1 +1,3 @@ -console.log("foo!")
\ No newline at end of file +$(document).ready(function() { + console.log("ready!") +});
\ No newline at end of file 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%; |