2020-06-05 05:13:41 +02:00
|
|
|
@import url('font-face.css');
|
2020-06-04 01:31:49 +02:00
|
|
|
@import url('normalize.css');
|
2020-06-04 01:36:54 +02:00
|
|
|
@import url('body-background.css');
|
2020-06-04 01:50:05 +02:00
|
|
|
@import url('bar.css');
|
|
|
|
@import url('top-panel.css');
|
|
|
|
@import url('clock.css');
|
2020-06-04 02:06:36 +02:00
|
|
|
@import url('dock.css');
|
2020-06-04 02:14:24 +02:00
|
|
|
@import url('dock-buttons.css');
|
2020-06-04 03:00:27 +02:00
|
|
|
@import url('centered-box.css');
|
2020-06-04 04:06:27 +02:00
|
|
|
@import url('centered-box-overlay.css');
|
2020-06-04 03:03:54 +02:00
|
|
|
@import url('profile-image.css');
|
2020-06-04 03:13:56 +02:00
|
|
|
@import url('search-box.css');
|
2020-06-04 04:23:40 +02:00
|
|
|
@import url('dashboard.css');
|
2020-06-04 04:45:26 +02:00
|
|
|
@import url('greeter-date-message.css');
|
2020-06-04 05:14:29 +02:00
|
|
|
@import url('search-engine-settings.css');
|
2020-06-04 05:27:00 +02:00
|
|
|
@import url('theme-engine.css');
|
2020-06-04 05:46:21 +02:00
|
|
|
@import url('weather-screen.css');
|
2020-06-04 05:49:17 +02:00
|
|
|
@import url('weather-settings.css');
|
2020-06-04 06:15:59 +02:00
|
|
|
@import url('web-menu.css');
|
2020-06-06 05:34:20 +02:00
|
|
|
@import url('auto-suggestion.css');
|
2020-06-04 01:31:49 +02:00
|
|
|
|
|
|
|
:root {
|
|
|
|
/* Colors */
|
|
|
|
--base-bg: #00000060;
|
|
|
|
--base-color: #f2f2f2;
|
|
|
|
--base-container: #f2f2f220;
|
|
|
|
|
2020-06-07 08:34:27 +02:00
|
|
|
--base-hover-bg: #f2f2f230;
|
|
|
|
--base-focus-bg: #f2f2f245;
|
2020-06-04 01:31:49 +02:00
|
|
|
--base-active-bg: #fefefe60;
|
|
|
|
|
|
|
|
--blur-strength: 6px;
|
|
|
|
|
|
|
|
--panel-bg: var(--base-bg);
|
|
|
|
--panel-color: var(--base-color);
|
|
|
|
|
|
|
|
--transition-speed: 300ms;
|
|
|
|
|
|
|
|
--rounded-radius: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
/*Font rendering*/
|
|
|
|
-webkit-font-smoothing: antialiased !important;
|
|
|
|
-moz-osx-font-smoothing: grayscale !important;
|
|
|
|
text-rendering: optimizeLegibility !important;
|
|
|
|
font-variant-ligatures: none !important;
|
2020-06-05 03:54:49 +02:00
|
|
|
|
|
|
|
/*Disable tap hightlight color on mobile devices*/
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
|
|
|
2020-06-04 01:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
background: #1a1a1a;
|
|
|
|
color: var(--foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100% !important;
|
|
|
|
position: fixed !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Scrollbar*/
|
|
|
|
|
|
|
|
/*Placeholder*/
|
|
|
|
::placeholder {
|
|
|
|
color: var(--base-color);
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* width */
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Track */
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: var(--base-container);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--base-active-bg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: var(--base-hover-bg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*Hide focus elements outline*/
|
|
|
|
input:focus,
|
|
|
|
textarea:focus,
|
|
|
|
select:focus{
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
text-align: center;
|
|
|
|
text-align-last: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
option {
|
|
|
|
text-align: left;
|
|
|
|
}
|