39 lines
1.2 KiB
SCSS
39 lines
1.2 KiB
SCSS
@charset "UTF-8";
|
|
|
|
|
|
// Color scheme
|
|
@import 'color/v2-light';
|
|
|
|
|
|
// Layout profile
|
|
@import 'layout/material-v2';
|
|
|
|
|
|
// Material Design Icon settings
|
|
// If you want to use self-hosting font, please place MaterialIcons-Regular.woff2 file in '../../fonts' folder and configure below.
|
|
@font-face {
|
|
font-family: "Material Icons";
|
|
src:
|
|
local("Material Icons"),
|
|
//url("https://raw.githubusercontent.com/google/material-design-icons/master/iconfont/MaterialIcons-Regular.woff2"); // GitHub
|
|
//url("https://fonts.gstatic.com/s/materialicons/v50/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2"); // Google Fonts
|
|
url("../fonts/MaterialIcons-Regular.woff2"); // Self-hosting
|
|
}
|
|
|
|
|
|
// Search bar hover settings
|
|
// You can enable/disable search bar floating.
|
|
/*.search__input:hover {
|
|
@include shadow-2dp;
|
|
background: $search-bar-focus-color;
|
|
}*/
|
|
|
|
|
|
// Favorite icon settings
|
|
$favorite-icon: "star"; $favorite-icon-border: "star_border"; // Star
|
|
//$favorite-icon: "favorite"; $favorite-icon-border: "favorite_border"; // Heart
|
|
//$favorite-icon: "plus_one"; $favorite-icon-border: "plus_one"; // +1
|
|
|
|
$favorite-icon-color: #ffd600; // Star
|
|
//$favorite-icon-color: #ff4081; // Heart
|
|
//$favorite-icon-color: #db4437; // +1 |