1
0
Fork 0
mirror of https://gitlab.com/Shinobi-Systems/ShinobiCE.git synced 2025-03-09 15:40:15 +00:00
- Rebased sql, test, web, defintions, languages, INSTALL, and libs folders.
This commit is contained in:
Moe 2019-03-07 14:43:37 -08:00
parent 24de55e45a
commit d0b12e92e7
362 changed files with 21716 additions and 7018 deletions

View file

@ -0,0 +1,8 @@
/* BEGIN Black */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Black");
font-weight: 900;
font-style: normal;
}
/* END Black */

View file

@ -0,0 +1,8 @@
/* BEGIN Black Italic */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "BlackItalic");
font-weight: 900;
font-style: italic;
}
/* END Black Italic */

14
web/libs/sass/_Bold.scss Normal file
View file

@ -0,0 +1,14 @@
/* BEGIN Bold */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Bold");
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Bold");
font-weight: bold;
font-style: normal;
}
/* END Bold */

View file

@ -0,0 +1,14 @@
/* BEGIN Bold Italic */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "BoldItalic");
font-weight: 700;
font-style: italic;
}
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "BoldItalic");
font-weight: bold;
font-style: italic;
}
/* END Bold Italic */

View file

@ -0,0 +1,14 @@
/* BEGIN Italic */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Italic");
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Italic");
font-weight: normal;
font-style: italic;
}
/* END Italic */

View file

@ -0,0 +1,8 @@
/* BEGIN Light */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Light");
font-weight: 300;
font-style: normal;
}
/* END Light */

View file

@ -0,0 +1,8 @@
/* BEGIN Light Italic */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "LightItalic");
font-weight: 300;
font-style: italic;
}
/* END Light Italic */

View file

@ -0,0 +1,8 @@
/* BEGIN Medium */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Medium");
font-weight: 500;
font-style: normal;
}
/* END Medium */

View file

@ -0,0 +1,8 @@
/* BEGIN Medium Italic */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "MediumItalic");
font-weight: 500;
font-style: italic;
}
/* END Medium Italic */

View file

@ -0,0 +1,14 @@
/* BEGIN Regular */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Regular");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Regular");
font-weight: normal;
font-style: normal;
}
/* END Regular */

8
web/libs/sass/_Thin.scss Normal file
View file

@ -0,0 +1,8 @@
/* BEGIN Thin */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "Thin");
font-weight: 100;
font-style: normal;
}
/* END Thin */

View file

@ -0,0 +1,8 @@
/* BEGIN Thin Italic */
@font-face {
font-family: Roboto;
@include fontdef-woff($FontPath, $FontName, $FontVersion, "ThinItalic");
font-weight: 100;
font-style: italic;
}
/* END Thin Italic */

View file

@ -0,0 +1,4 @@
@mixin fontdef-woff($FontPath, $FontName, $FontVersion:"1.0.0", $FontType:"Regular") {
src: url('#{$FontPath}/#{$FontType}/#{$FontName}-#{$FontType}.woff2?v=#{$FontVersion}') format('woff2'),
url('#{$FontPath}/#{$FontType}/#{$FontName}-#{$FontType}.woff?v=#{$FontVersion}') format('woff');
}

View file

@ -0,0 +1,3 @@
$FontPath: "./fonts" !default;
$FontName: "Roboto" !default;
$FontVersion: "2.137" !default;

15
web/libs/sass/roboto.scss Normal file
View file

@ -0,0 +1,15 @@
@import "variables";
@import "mixins";
@import "Thin";
@import "ThinItalic";
@import "Light";
@import "LightItalic";
@import "Regular";
@import "Italic";
@import "Medium";
@import "MediumItalic";
@import "Bold";
@import "BoldItalic";
@import "Black";
@import "BlackItalic";