aboutsummaryrefslogtreecommitdiff
path: root/web/public/stylesheets/style.css
diff options
context:
space:
mode:
authorKumar Damani <kumar.damani@mail.utoronto.ca>2019-03-15 21:22:56 +0000
committerKumar Damani <kumar.damani@mail.utoronto.ca>2019-03-15 21:22:56 +0000
commitbf2b97832c3746e3f7f18c6aec253c76124e5564 (patch)
tree1bfad1307d1faaf5fc44aed204d14887688494b6 /web/public/stylesheets/style.css
parent4b696da0334a92a00119ab4a5c0414a79f39da4f (diff)
added FE web updates for displaying new form report. minor ui enchancements
Diffstat (limited to 'web/public/stylesheets/style.css')
-rw-r--r--web/public/stylesheets/style.css29
1 files changed, 22 insertions, 7 deletions
diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css
index d8618cd..429a8f2 100644
--- a/web/public/stylesheets/style.css
+++ b/web/public/stylesheets/style.css
@@ -21,8 +21,6 @@ a {
left: 5px;
z-index: 2;
width: 350px;
- height: 275px;
- max-height: 275px;
position: relative;
float: left;
background-color: lightgrey;
@@ -34,11 +32,11 @@ a {
margin-top: 10px;
margin-bottom: 10px;
}
-#point-container {
+#report-container {
overflow: auto;
- max-height: 195px;
+ max-height: 750px;
}
-#point {
+#report {
background-color: #0CC5EA;
width: 90%;
margin-left: auto;
@@ -46,9 +44,26 @@ a {
margin-bottom: 5px;
padding: 5px;
border-radius: 10px;
+ display: flex;
+ flex-flow: row wrap;
+ justify-content: flex-end;
+ flex-direction: column;
+}
+#report strong {
+ font-size: 22px;
+ font-style: italic;
+ margin: auto;
+ padding: 5px;
+}
+#report span {
+ background-color: white;
+ padding: 15px;
+ border-radius: 10px;
+ font-weight: lighter;
+ font-size: large;
+ text-align: center;
}
#close-btn-container {
- position: fixed;
height: 30px;
top: 250px;
background-color: lightgrey;
@@ -64,4 +79,4 @@ a {
margin-right: 20px;
border-radius: 10px;
width: 100px;
-} \ No newline at end of file
+}