kazhnuz.css/scss/style.scss

43 lines
904 B
SCSS
Raw Normal View History

2019-10-04 19:23:05 +02:00
@import 'palette';
2019-10-04 19:32:11 +02:00
2019-10-08 13:06:59 +02:00
/* ------------------ CUSTOM STYLE ------------------- */
2019-10-08 13:30:13 +02:00
$large-shadow: 0px 2px 10px rgba(0, 0, 0, 0);
$narrow-shadow: 0px 2px 6px rgba(0, 0, 0, 0);
$inset-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0);
$inset-shadow-inverted: inset 0px 2px 0px rgba(0, 0, 0, 0);
$inset-relief: inset 0px 2px 0px rgba(255, 255, 255, 0);
$border-radius: 0px;
$border-size: 0px;
2019-10-08 13:06:59 +02:00
2019-10-08 13:50:01 +02:00
$color-footer-back: $color-dark;
$color-footer-text: $color-light;
2019-10-08 13:06:59 +02:00
@mixin borders() {
border: $border-size solid rgba(0, 0, 0, 0.3)
}
@mixin border-radius() {
border-radius: $border-radius $border-radius $border-radius $border-radius;
}
body {
2019-10-08 13:50:01 +02:00
background-color: $color-footer-back;
}
2019-10-08 13:06:59 +02:00
#wrapper {
2019-10-08 13:50:01 +02:00
background-color: $color-light;
}
#page-header {
background: $color-turquoise url('../img/background.png') center bottom repeat-x;
2019-10-08 13:50:01 +02:00
height:350px;
2019-10-08 13:06:59 +02:00
}
@import 'commons';
@import 'colorize';
@import 'overrides';