diff options
author | Minteck <minteck@phoenixnet.tech> | 2021-10-31 11:49:13 +0100 |
---|---|---|
committer | Minteck <minteck@phoenixnet.tech> | 2021-10-31 11:49:13 +0100 |
commit | e8e6a0906702dc7b569ef4f0b2d9486d772ba562 (patch) | |
tree | fb1361db2820ee7182c5023f6fa03237c8f46367 /native.css | |
download | core-e8e6a0906702dc7b569ef4f0b2d9486d772ba562.tar.gz core-e8e6a0906702dc7b569ef4f0b2d9486d772ba562.tar.bz2 core-e8e6a0906702dc7b569ef4f0b2d9486d772ba562.zip |
Initial commit
Diffstat (limited to 'native.css')
-rw-r--r-- | native.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/native.css b/native.css new file mode 100644 index 0000000..0471f6a --- /dev/null +++ b/native.css @@ -0,0 +1,68 @@ +#dragspace { + -webkit-app-region: drag; + position: fixed; + top: 0; + right: 96px; + left: 0; + height: 33px; +} + +::-webkit-scrollbar { + width: 10px; +} + +::-webkit-scrollbar-track { + background: #f1f1f1; +} + +::-webkit-scrollbar-thumb { + background: #888; +} + +::-webkit-scrollbar-thumb:hover { + background: #555; +} + +#window { + position: fixed; + top: 0; + right: 0; + z-index: 9999999; +} + +.window-btn img { + width: 16px; +} + +.window-btn { + padding-bottom: 4px; + padding-left: 4px; + padding-right: 4px; + border: 1px solid lightgray; + border-top: none; + position: fixed; + top: 0; + right: 16px; + height: 16px; +} + +#window-close { + border-bottom-right-radius: 5px; +} + +#window-minimize { + border-bottom-left-radius: 5px; + right: 66px; +} + +#window-maximize, #window-restore { + right: 41px; +} + +.window-btn img { + pointer-events: none; +} + +#copyright { + right: 114px !important; +}
\ No newline at end of file |