From 085538ec47cb5baa29c4214d97c6926b285ab507 Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Sun, 17 Feb 2019 21:15:36 -0700 Subject: added basic site with basic map --- web/public/stylesheets/style.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 web/public/stylesheets/style.css (limited to 'web/public/stylesheets/style.css') diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css new file mode 100644 index 0000000..c3bd05c --- /dev/null +++ b/web/public/stylesheets/style.css @@ -0,0 +1,26 @@ +html, body { + height: 100%; + overflow: hidden; +} +#map { + width: 65%; + height: 100%; + float: right; +} +body { + margin:0; + padding:0px; + font:14px "Lucida Grande", Helvetica, Arial, sans-serif; +} +a { + color:#00B7FF; +} +#sidebar { + width: 35%; + height: 100%; + float: left; + background-color: #e70000; +} +h1 { + text-align: center; +} -- cgit v1.2.3