diff options
| author | Melonai <einebeere@gmail.com> | 2020-05-08 21:20:42 +0200 |
|---|---|---|
| committer | Melonai <einebeere@gmail.com> | 2020-05-08 21:20:42 +0200 |
| commit | 634fa9b86aa53dc28ac2db700ff777a8c9b9b096 (patch) | |
| tree | 6c426bf8d6e424b94a52148a0bdb640d07478320 /client/static/main.css | |
| parent | 417a3dbf1a0e0f5d9761192eb53d18bb40fde2cc (diff) | |
| download | shorest-0.1.0.tar.zst shorest-0.1.0.zip | |
proper response management 0.1.0
Diffstat (limited to 'client/static/main.css')
| -rw-r--r-- | client/static/main.css | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/client/static/main.css b/client/static/main.css index 2964681..a3182f9 100644 --- a/client/static/main.css +++ b/client/static/main.css @@ -18,13 +18,39 @@ html * { color: #E0E0E0; } +.response-text { + margin-bottom: 0; +} + +.copy-text { + color: #E0E0E0; + padding-right: 30px; + text-align: right; + -webkit-touch-callout: none !important; + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; +} + .input-group { position: relative; display: table; + border-color: #E0E0E0; border-collapse: separate; transition: border-color 1s; } +.response-container { + display: flex; + align-items: center; + border: 2px solid #E0E0E0; + margin: 15px 30px 0 30px; + height: 14vh; + justify-content: space-between; + border-radius: 0 5vh 5vh 5vh; +} + .input-field { position: relative; z-index: 2; @@ -54,7 +80,7 @@ html * { align-items: center; position: relative; padding: 0; - border-radius: 100px 0 0 100px; + border-radius: 5vh 0 0 5vh; border: 2px solid; border-color: inherit; margin: 0; @@ -94,9 +120,18 @@ html * { -moz-user-select: none; -ms-user-select: none; user-select: none; - border-radius: 0 100px 100px 0; + border-radius: 0 5vh 5vh 0; border: 2px solid; border-color: inherit; border-left: none; transition: color 1s; +} + +strong { + font-weight: normal; + color: #727272; +} + +a { + text-decoration: none; } \ No newline at end of file |
