46 lines
1.3 KiB
SCSS
46 lines
1.3 KiB
SCSS
@charset "UTF-8";
|
|
|
|
|
|
// [important] This file is base file. DO NOT edit this file. If you want to change this file, you should edit "../custom_config.scss".
|
|
|
|
|
|
// Color scheme
|
|
@import '../color/v1-light';
|
|
// Note: If you change this section in custom_config.scss, you have to write like below. Be careful about relative path.
|
|
// @import '../../color/v2-light';
|
|
|
|
|
|
// Layout profile
|
|
@import '../layout/material-v1';
|
|
// Note: If you change this section in custom_config.scss, you have to write like below. Be careful about relative path.
|
|
// @import '../../layout/material-v2';
|
|
|
|
|
|
// Search bar hover settings
|
|
// You can enable/disable search bar floating.
|
|
$search-bar-hover: false;
|
|
|
|
|
|
// Status font size in timeline
|
|
$status-font-size: 15px; // mastodon default
|
|
//$status-font-size: 16px; // compatible with material design
|
|
|
|
|
|
// Name font size in timeline status
|
|
$name-font-size: 15px; // mastodon default
|
|
//$name-font-size: 16px; // compatible with material design
|
|
|
|
|
|
// Background image
|
|
// If you want to use the local image, please put it in "../"
|
|
$bg-image: none;
|
|
//$bg-image: "./image.png";
|
|
//$bg-image: "https://example.com/img/image.png";
|
|
|
|
|
|
// Columns transparency settings
|
|
$bar-transparency: 1.0; // opacity
|
|
//$bar-transparency: 0.8; // semi-transparent
|
|
|
|
$column-transparency: 1.0; // opacity
|
|
//$column-transparency: 0.8; // semi-transparent |