aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
Diffstat (limited to 'assets')
-rw-r--r--assets/css/style.css23
-rw-r--r--assets/js/script.js2
2 files changed, 24 insertions, 1 deletions
diff --git a/assets/css/style.css b/assets/css/style.css
index 5995a6e..d9bf06b 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -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