diff options
Diffstat (limited to 'static/workshop_app')
-rw-r--r-- | static/workshop_app/css/modal.css | 20 | ||||
-rw-r--r-- | static/workshop_app/css/sticky-footer.css | 10 | ||||
-rw-r--r-- | static/workshop_app/js/overlay.js | 7 |
3 files changed, 37 insertions, 0 deletions
diff --git a/static/workshop_app/css/modal.css b/static/workshop_app/css/modal.css new file mode 100644 index 0000000..dc767a0 --- /dev/null +++ b/static/workshop_app/css/modal.css @@ -0,0 +1,20 @@ +#overlay { + visibility: hidden; + position: absolute; + left: 0px; + top: 0px; + width:100%; + height:100%; + text-align:center; + z-index: 1000; +} + +#overlay div { + width:900px; + height: 450px; + margin: 100px auto; + background-color: #fff; + border:1px solid #000; + padding:15px; + text-align:center; +} diff --git a/static/workshop_app/css/sticky-footer.css b/static/workshop_app/css/sticky-footer.css new file mode 100644 index 0000000..42471ee --- /dev/null +++ b/static/workshop_app/css/sticky-footer.css @@ -0,0 +1,10 @@ +.footer { + position: absolute; + bottom: 0; + padding-left: 75px; + +} + +.hiddenRow { + padding: 0 !important; +}
\ No newline at end of file diff --git a/static/workshop_app/js/overlay.js b/static/workshop_app/js/overlay.js new file mode 100644 index 0000000..6563c0d --- /dev/null +++ b/static/workshop_app/js/overlay.js @@ -0,0 +1,7 @@ +function overlay(course_no) { + el = document.getElementById("overlay"); + course_id = document.getElementById("course_id"); + el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible"; + + console.log(course_no); +}
\ No newline at end of file |