diff options
| author | Melonai <einebeere@gmail.com> | 2020-05-07 00:53:08 +0200 |
|---|---|---|
| committer | Melonai <einebeere@gmail.com> | 2020-05-07 00:53:08 +0200 |
| commit | bc42d900d956f11307d14136f8e24d7cd793b012 (patch) | |
| tree | b7e1e29f2972f26a5a5397083541312ca98a6c1f /client/main.css | |
| download | shorest-bc42d900d956f11307d14136f8e24d7cd793b012.tar.zst shorest-bc42d900d956f11307d14136f8e24d7cd793b012.zip | |
initial structure
Diffstat (limited to 'client/main.css')
| -rw-r--r-- | client/main.css | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/client/main.css b/client/main.css new file mode 100644 index 0000000..8f84f71 --- /dev/null +++ b/client/main.css @@ -0,0 +1,99 @@ +html * { + font-family: Roboto, sans-serif; + font-size: 18px; +} + +.active { + justify-content: center; + max-width: 100vw; + margin-top: 20%; + padding: 0 50px 0 50px; +} + +.title { + padding-left: 30px; + margin-bottom: 10px; + line-height: 1.42857143; + color: #E0E0E0; +} + +.input-group { + position: relative; + display: table; + border-collapse: separate; + border-color: #E0E0E0; + transition: border-color 1s; +} + +.input-field { + position: relative; + z-index: 2; + margin-bottom: 0; + text-indent: 0; + color: #727272; + background-color: #fff; + background-image: none; + box-sizing: border-box; + border: none; + outline: none; + height: 100%; + width: 100%; +} + +.input-field-text { + margin-left: 30px; + box-sizing: border-box; + color: #E0E0E0; +} + +.input-container { + z-index: 2; + width: 100%; + float: left; + display: flex; + align-items: center; + position: relative; + padding: 0; + border-radius: 100px 0 0 100px; + border: 2px solid; + border-color: inherit; + margin: 0; + box-sizing: border-box; + height: 10vh; +} + +.btn-container { + display: table-cell; + position: relative; + font-size: 0; + white-space: nowrap; + width: 1%; + height: 0; + vertical-align: middle; + border-color: inherit; +} + +.btn { + z-index: 2; + margin-left: -1px; + display: inline-block; + margin-bottom: 0; + font-weight: 400; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + background-image: none; + padding: 4px 5vw; + height: 10vh; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + border-radius: 0 100px 100px 0; + border: 2px solid; + border-color: inherit; + border-left: none; +} \ No newline at end of file |
