diff options
| author | Kumar Damani <damani.kumar@gmail.com> | 2019-03-19 20:32:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-19 20:32:59 +0000 |
| commit | f96b95e742582011e6db6c78f4e4274c0720888d (patch) | |
| tree | d73e821010f8e3bc664a97b89b8584e92e0ab6b5 /web/public/stylesheets | |
| parent | 84aee4a2ed8e79f506f5c0928dacdfd313776d0f (diff) | |
| parent | 5d7cb45633994c3d51a54e525d7f9eba685b12ed (diff) | |
Merge pull request #39 from csc301-winter-2019/feat/32
Feat/32
Diffstat (limited to 'web/public/stylesheets')
| -rw-r--r-- | web/public/stylesheets/style.css | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/web/public/stylesheets/style.css b/web/public/stylesheets/style.css index d8618cd..74660a8 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: 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 +} |
