mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
28 lines
607 B
SCSS
28 lines
607 B
SCSS
// Reset
|
|
* {
|
|
all: unset;
|
|
}
|
|
|
|
// Colors
|
|
@import './material'; // Material colors
|
|
@import './colors'; // Global color definitions. Uses material colors as base.
|
|
@import './lib'; // Global mixins and functions
|
|
@import './common'; // Context menu n stuff
|
|
|
|
// Components
|
|
@import './bar';
|
|
@import './cheatsheet';
|
|
@import './sidebars';
|
|
@import './osd';
|
|
@import './overview';
|
|
@import './osk';
|
|
@import './session';
|
|
@import './notifications';
|
|
|
|
// Classes for interaction
|
|
.growingRadial {
|
|
transition: 300ms cubic-bezier(0.2, 0.0, 0, 1.0);
|
|
}
|
|
.fadingRadial {
|
|
transition: 50ms cubic-bezier(0.2, 0.0, 0, 1.0);
|
|
} |