diff options
author | elilchen <[email protected]> | 2023-02-12 00:48:38 +0800 |
---|---|---|
committer | elilchen <[email protected]> | 2023-02-12 00:48:38 +0800 |
commit | 7a0e300ff9d5190a31b49155df51dde5c0db2a29 (patch) | |
tree | 064916b7e8c0eb78f012cbcfbfa61567ebc32ada /ui/html/style.css | |
parent | b2f381913df6583f215e50faa28dc5e1333d40e6 (diff) | |
download | rustdesk-server-7a0e300ff9d5190a31b49155df51dde5c0db2a29.tar.gz rustdesk-server-7a0e300ff9d5190a31b49155df51dde5c0db2a29.zip |
UI
Diffstat (limited to 'ui/html/style.css')
-rw-r--r-- | ui/html/style.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ui/html/style.css b/ui/html/style.css new file mode 100644 index 0000000..6e59bab --- /dev/null +++ b/ui/html/style.css @@ -0,0 +1,34 @@ +body { + margin: 0; + background: #fff; +} + +.CodeMirror { + height: calc(100vh - 20px); +} + +form { + height: 20px; + position: fixed; + right: 0; + bottom: 0; + left: 5px; + font-size: 13px; + background: #fff; +} + +form>label { + display: none; + vertical-align: middle; +} + +form>label>input, +form>label>p { + height: 19px; + padding: 0; + display: inline-block; + margin: 0; + vertical-align: middle; + cursor: pointer; + user-select: none; +}
\ No newline at end of file |