From 0bd45cb2cae3af05adaad3f38d129bb67c3e0ec0 Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 18 May 2022 18:50:12 +0200 Subject: Add Kartik --- kartik/views/common/index.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 kartik/views/common/index.css (limited to 'kartik/views/common/index.css') diff --git a/kartik/views/common/index.css b/kartik/views/common/index.css new file mode 100755 index 0000000..f9ff24e --- /dev/null +++ b/kartik/views/common/index.css @@ -0,0 +1,29 @@ +#titlebar-minimize, #titlebar-close { + background-color: transparent; + transition: background-color 200ms; + border-radius: 10px; +} + +#titlebar-minimize:hover { + background-color: rgba(99, 99, 99, .5); +} + +#titlebar-minimize:focus, #titlebar-minimize:active { + background-color: rgba(99, 99, 99, .75); +} + +#titlebar-close:hover { + background-color: rgba(255, 0, 0, .5); +} + +#titlebar-close:focus, #titlebar-close:active { + background-color: rgba(255, 0, 0, .75); +} + +*::selection { + background-color: transparent; +} + +*::inactive-selection { + background-color: transparent; +} \ No newline at end of file -- cgit