This commit is contained in:
s-lnk
2026-04-30 21:58:39 +03:00
commit aabe5fe2b7
2923 changed files with 366740 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
//
// Fonts
//
// Import fonts from Google
//
// Using the $font variable you can import any font family from Google Fonts.
// go to https://fonts.google.com copy and paste the URL of the selected font from the @import tab
// (e.g: https://fonts.googleapis.com/css?family=Nunito) and peste it in the _variables.scss from the custom folder
@import url(#{$font});
// Create font from local font
//
// if you want to create a custom font family, first comment the @import from line 12.
// copy and paste you font files in assets/fonts (you might need to create the folder)
//
// use this file to create the @font-face
// open custom/_variables.scss uncomment and replace the $font-family-custom-sans-serif value with the CUSTOM_FONT face you created
// Font face example
// @font-face {
// font-family: "CUSTOM_FONT";
// src: url("CUSTOM_FONT.eot");
// src: url("CUSTOM_FONT.woff") format("woff"),
// url("CUSTOM_FONT.otf") format("opentype"),
// url("CUSTOM_FONT.svg#filename") format("svg");
// }
+4
View File
@@ -0,0 +1,4 @@
// User styles
//
// This is the place where you should place all additional styles and imports.
// This will allow you to take advantage of future updates with lower time consumed on the upgrade process.
+29
View File
@@ -0,0 +1,29 @@
// Variables
//
// Variables should follow the `$component-state-property-size` formula for
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
// Skins
//
// We recommend that all the variables that are staying at the core of your product's styleguide (colors, typography) to be separated in a custom skin
// you can start by using one of the pre-built ones or, simply, create a new one
// learn more about how to create your skin by reading the theme's documentation.
//
// Below you can find 3 pre-defined skins. You can uncomment any one of them and compile Sass using the build tools
// @import "../skins/green/light";
// @import "../skins/green/dark";
// Fonts
//
// uncomment and replace the $font and $font-family-custom-sans-serif value with any URL and font family name from Google Fonts
//
// $font: "https://fonts.googleapis.com/css?family=Nunito:300,400,600,700" !default;
// $font-family-custom-sans-serif: "Nunito", sans-serif !default;
// $font-family-base: $font-family-custom-sans-serif !default;
// Custom variables
//
// Need additional variables? Simply create it here and make sure you follow the naming formula explained at the top of this file.