Cleaning up trash, Changing from pure CSS to SCSS
Update .dockerignore, .gitignore, and 20 more files...
This commit is contained in:
16
resources/Azias/scss/standalone/fonts.scss
Normal file
16
resources/Azias/scss/standalone/fonts.scss
Normal file
@@ -0,0 +1,16 @@
|
||||
/* Standalone > Fonts & Text */
|
||||
|
||||
@font-face {
|
||||
font-family: 'Quantum';
|
||||
src: url("/resources/Quantum/Quantum.otf") format('opentype');
|
||||
}
|
||||
|
||||
.quantum {
|
||||
// Only really used for the logo title in the sidebar.
|
||||
font-family: 'Quantum', sans-serif;
|
||||
}
|
||||
|
||||
.ucase {
|
||||
// Same as above.
|
||||
text-transform: uppercase;
|
||||
}
|
30
resources/Azias/scss/standalone/utils.scss
Normal file
30
resources/Azias/scss/standalone/utils.scss
Normal file
@@ -0,0 +1,30 @@
|
||||
/* Standalone > Utils */
|
||||
|
||||
img.no-save {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.no-select {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.hide-scrollbar {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
|
||||
::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.square-corners {
|
||||
border-radius: 0!important;
|
||||
}
|
||||
|
||||
.stretch-align-items {
|
||||
align-items: stretch;
|
||||
}
|
Reference in New Issue
Block a user