This repository has been archived on 2023-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
bluesky-bootstrap-theme/scss/style.scss

34 lines
817 B
SCSS
Raw Normal View History

@import 'palette';
/* ------------------ CUSTOM STYLE ------------------- */
2018-10-13 17:55:11 +02:00
$large-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
$narrow-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
$inset-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.2);
$inset-shadow-inverted: inset 0px 2px 0px rgba(0, 0, 0, 0.2);
$inset-relief: inset 0px 2px 0px rgba(255, 255, 255, 0.1);
$border-radius: 3px;
$border-size: 1px;
$color-primary: $color-purple;
$color-secondary: $color-blue;
$color-link: $color-blue;
$color-selection: $color-blue;
@mixin borders() {
border: $border-size solid rgba(0, 0, 0, 0.3)
}
2018-10-14 18:19:55 +02:00
@mixin border-radius() {
2018-10-14 17:49:39 +02:00
border-radius: $border-radius $border-radius $border-radius $border-radius;
}
2018-10-13 17:55:11 +02:00
#wrapper {
background: #64b5f6 url('../img/background.png') center bottom repeat-x;
}
@import 'commons';
2018-10-15 10:00:49 +02:00
@import 'colorize';