diff options
author | lowercasename <raphaelkabo@gmail.com> | 2019-10-01 00:32:31 +0100 |
---|---|---|
committer | lowercasename <raphaelkabo@gmail.com> | 2019-10-01 00:32:31 +0100 |
commit | 0c46e2d2d148efb7cfabcf82c12266a8d788f551 (patch) | |
tree | b1a2b9f5aa4dfa543a965b1d7886f4f133d63a54 /public/css | |
parent | f04431e5b29b86b7439e41d40ae5a23a13ddd488 (diff) | |
parent | 40ade71e0019bbb59710a2e2e5d74197c47cb1b0 (diff) |
Merge branch 'master' of https://github.com/lowercasename/gathio
Diffstat (limited to 'public/css')
-rwxr-xr-x | public/css/style.css | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/public/css/style.css b/public/css/style.css index 683e165..4085875 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -132,21 +132,15 @@ body, html { } .attendeesList > li { - height: 80px; - width: 80px; border: 4px solid #0ea130; - border-radius: 50%; + border-radius: 2em; + padding: .5em 1em; margin-right: 5px; - margin-bottom: 5px; + margin-bottom: 10px; background: #57b76d; color: white; font-size: 0.95em; font-weight: bold; - overflow: hidden; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; } .expand { @@ -200,7 +194,7 @@ body, html { /* IMAGE UPLOAD FORM */ -#image-preview { +.image-preview { width: 100%; height: 200px; position: relative; @@ -210,14 +204,14 @@ body, html { border-radius: 5px; border: 1px dashed #ced4da; } -#image-preview input { +.image-preview input { line-height: 200px; font-size: 200px; position: absolute; opacity: 0; z-index: 10; } -#image-preview label { +.image-preview label { position: absolute; z-index: 5; opacity: 0.8; @@ -243,7 +237,8 @@ body, html { } #newEventFormContainer, -#importEventFormContainer { +#importEventFormContainer, +#newEventGroupFormContainer { display: none; } @@ -299,6 +294,10 @@ body, html { display: none; } */ +#eventGroupData { + display: none; +} + .edit-buttons { text-align: right; } @@ -330,3 +329,12 @@ body, html { margin-top: 0; } } + +.list-group-item-action:hover { + background-color: #d4edda; +} + +.code { + font-family: 'Courier New', Courier, monospace; + overflow-wrap: anywhere; +}
\ No newline at end of file |