aboutsummaryrefslogtreecommitdiff
path: root/web/public/stylesheets
diff options
context:
space:
mode:
authorKumar Damani <damani.kumar@gmail.com>2019-03-20 21:39:50 +0000
committerGitHub <noreply@github.com>2019-03-20 21:39:50 +0000
commit7c98e3c782f3d8da4cc289dce9ecb0a6cfd9b26d (patch)
tree60c31b4ce78beee9ab7c2ee9142e9718308c3cfa /web/public/stylesheets
parent672e6f2a3bb27b6e3f3d4cff3425cfc653e07be6 (diff)
parent7cbb77be44854015b943d5a2147fe188bd0132f1 (diff)
Merge pull request #42 from csc301-winter-2019/feat/32
Feat/32
Diffstat (limited to 'web/public/stylesheets')
-rw-r--r--web/public/stylesheets/style.css32
1 files changed, 24 insertions, 8 deletions
diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css
index d8618cd..ece8da4 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 {
- overflow: auto;
- max-height: 195px;
+#report-container {
+ overflow: auto;
+ max-height: 500px;
}
-#point {
+#report {
background-color: #0CC5EA;
width: 90%;
margin-left: auto;
@@ -46,9 +44,27 @@ a {
margin-bottom: 5px;
padding: 5px;
border-radius: 10px;
+ display: flex;
+ 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;
+ overflow-wrap: break-word;
+ word-wrap: break-word;
}
#close-btn-container {
- position: fixed;
height: 30px;
top: 250px;
background-color: lightgrey;
@@ -64,4 +80,4 @@ a {
margin-right: 20px;
border-radius: 10px;
width: 100px;
-} \ No newline at end of file
+}