aboutsummaryrefslogtreecommitdiff
path: root/web/public/stylesheets/style.css
diff options
context:
space:
mode:
authorSamarth-Agarwal1 <agarwalsamarth@hotmail.com>2019-03-08 21:19:17 +0000
committerGitHub <noreply@github.com>2019-03-08 21:19:17 +0000
commit032fc2bea5f5c00d4147e4077107f52888b302c4 (patch)
treed9ac33b9bfe1827f6af18427d47e4b2f8b005a8b /web/public/stylesheets/style.css
parente8c968d4cc316b350d0402b77f45d71b107440b5 (diff)
parentca73a14e80887b5e5763ba17c337a54fbe733454 (diff)
Merge pull request #30 from csc301-winter-2019/qa-temp-merging-feat22
Qa temp merging feat22
Diffstat (limited to 'web/public/stylesheets/style.css')
-rw-r--r--web/public/stylesheets/style.css53
1 files changed, 47 insertions, 6 deletions
diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css
index c3bd05c..d8618cd 100644
--- a/web/public/stylesheets/style.css
+++ b/web/public/stylesheets/style.css
@@ -3,9 +3,10 @@ html, body {
overflow: hidden;
}
#map {
- width: 65%;
+ width: 100%;
height: 100%;
- float: right;
+ position: absolute;
+ z-index: 1;
}
body {
margin:0;
@@ -16,11 +17,51 @@ a {
color:#00B7FF;
}
#sidebar {
- width: 35%;
- height: 100%;
+ top: 5px;
+ left: 5px;
+ z-index: 2;
+ width: 350px;
+ height: 275px;
+ max-height: 275px;
+ position: relative;
float: left;
- background-color: #e70000;
+ background-color: lightgrey;
+ border-radius: 10px;
+ visibility: hidden;
}
-h1 {
+#details-header {
text-align: center;
+ margin-top: 10px;
+ margin-bottom: 10px;
+}
+#point-container {
+ overflow: auto;
+ max-height: 195px;
}
+#point {
+ background-color: #0CC5EA;
+ width: 90%;
+ margin-left: auto;
+ margin-right: auto;
+ margin-bottom: 5px;
+ padding: 5px;
+ border-radius: 10px;
+}
+#close-btn-container {
+ position: fixed;
+ height: 30px;
+ top: 250px;
+ background-color: lightgrey;
+ width: 350px;
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
+}
+#close-btn {
+ background-color: red;
+ position: relative;
+ margin-top: 4px;
+ float: right;
+ margin-right: 20px;
+ border-radius: 10px;
+ width: 100px;
+} \ No newline at end of file