diff options
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/style.css | 25 | ||||
| -rw-r--r-- | assets/js/script.js | 2 |
2 files changed, 25 insertions, 2 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index 160076a..eb683b1 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -414,7 +414,7 @@ section.exam-info em { /************************** Pop-up Window ************************************/ -.login-window, .registration-window { +.login-window, .registration-window, .modal { display: inline-block; text-align: left; vertical-align: middle; @@ -472,4 +472,25 @@ section.exam-info em { /***** Text Area for Send Message ****/ textarea { resize:vertical; -}
\ No newline at end of file +} + + +.table { + display:table; +} + +.table-row { + display:table-row; +} +.table-row { + border-bottom: 3px solid red; +} + +.table-cell { + display:table-cell; + padding: 2%; +} + +hr { + width: 100%; +} diff --git a/assets/js/script.js b/assets/js/script.js index 1657f9b..ae49e32 100644 --- a/assets/js/script.js +++ b/assets/js/script.js @@ -149,5 +149,7 @@ function main(){ console.log("Error: Click not registered"); } }); + + $('.table-row').trigger('create'); } $(document).ready(main);
\ No newline at end of file |
