mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2025-12-06 03:55:37 -05:00
styling
This commit is contained in:
5
src/styles/abstracts/_index.scss
Normal file
5
src/styles/abstracts/_index.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
@forward './fonts';
|
||||
@forward './layout';
|
||||
@forward './mixins';
|
||||
@forward './reset';
|
||||
@forward './variables';
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Action button styles
|
||||
Used specifically for game installation/uninstallation
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Animated checkbox component styles
|
||||
*/
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Button component styles
|
||||
Core styling for buttons throughout the application
|
||||
|
||||
3
src/styles/components/buttons/_index.scss
Normal file
3
src/styles/components/buttons/_index.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
@forward './action_button';
|
||||
@forward './animated_checkbox';
|
||||
@forward './button';
|
||||
1
src/styles/components/common/_index.scss
Normal file
1
src/styles/components/common/_index.scss
Normal file
@@ -0,0 +1 @@
|
||||
@forward './loading';
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Loading indicator component styles
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@use '../../variables' as *;
|
||||
@use '../../mixins' as *;
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Base dialog styles
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@use '../../variables' as *;
|
||||
@use '../../mixins' as *;
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
DLC Selection Dialog styles
|
||||
|
||||
3
src/styles/components/dialogs/_index.scss
Normal file
3
src/styles/components/dialogs/_index.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
@forward './dialog';
|
||||
@forward './dlc_dialog';
|
||||
@forward './progress_dialog';
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Progress dialog styles
|
||||
For installation/uninstallation progress display
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Game card styles
|
||||
For game items displayed in the grid
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@use '../../variables' as *;
|
||||
@use '../../mixins' as *;
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Game list styles
|
||||
|
||||
2
src/styles/components/games/_index.scss
Normal file
2
src/styles/components/games/_index.scss
Normal file
@@ -0,0 +1,2 @@
|
||||
@forward './gamecard';
|
||||
@forward './gamelist';
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Animated background styles
|
||||
*/
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Header component styles
|
||||
*/
|
||||
|
||||
4
src/styles/components/layout/_index.scss
Normal file
4
src/styles/components/layout/_index.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
@forward './background';
|
||||
@forward './header';
|
||||
@forward './loading_screen';
|
||||
@forward './sidebar';
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Initial loading screen styles
|
||||
*/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@use '../../variables' as *;
|
||||
@use '../../mixins' as *;
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Sidebar component styles
|
||||
|
||||
1
src/styles/components/notifications/_index.scss
Normal file
1
src/styles/components/notifications/_index.scss
Normal file
@@ -0,0 +1 @@
|
||||
@forward './toast';
|
||||
@@ -1,3 +1,6 @@
|
||||
@use '../../themes/index' as *;
|
||||
@use '../../abstracts/index' as *;
|
||||
|
||||
/*
|
||||
Toast notification styles
|
||||
*/
|
||||
|
||||
@@ -4,42 +4,27 @@
|
||||
*/
|
||||
|
||||
/* Basic variables and mixins */
|
||||
@use './variables' as *;
|
||||
@use './mixins' as *;
|
||||
@use './fonts' as *;
|
||||
@use 'abstracts/index' as *;
|
||||
|
||||
/* Reset & global styles */
|
||||
@use './reset';
|
||||
@use './layout';
|
||||
@use 'themes/index' as *;
|
||||
|
||||
/* Layout components */
|
||||
@use 'components/layout/header';
|
||||
@use 'components/layout/sidebar';
|
||||
@use 'components/layout/background';
|
||||
@use 'components/layout/loading_screen';
|
||||
@use 'components/layout/index' as *;
|
||||
|
||||
/* Game components */
|
||||
@use 'components/games/gamecard';
|
||||
@use 'components/games/gamelist';
|
||||
@use 'components/games/index' as *;
|
||||
|
||||
/* Button components */
|
||||
@use 'components/buttons/button';
|
||||
@use 'components/buttons/action_button';
|
||||
@use 'components/buttons/animated_checkbox';
|
||||
@use 'components/buttons/index' as *;
|
||||
|
||||
/* Dialog components */
|
||||
@use 'components/dialogs/dialog';
|
||||
@use 'components/dialogs/progress_dialog';
|
||||
@use 'components/dialogs/dlc_dialog';
|
||||
@use 'components/dialogs/index' as *;
|
||||
|
||||
/* Notification components */
|
||||
@use 'components/notifications/toast';
|
||||
@use 'components/notifications/index' as *;
|
||||
|
||||
/* Common components */
|
||||
@use 'components/common/loading';
|
||||
@use 'components/common/index' as *;
|
||||
|
||||
/* Page-specific styles */
|
||||
//@use 'pages/home';
|
||||
|
||||
/* Theme */
|
||||
@use 'themes/dark';
|
||||
|
||||
1
src/styles/themes/_index.scss
Normal file
1
src/styles/themes/_index.scss
Normal file
@@ -0,0 +1 @@
|
||||
@forward './dark';
|
||||
Reference in New Issue
Block a user