This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
qdouze-wordpress-theme/scss/style.scss

50 lines
1003 B
SCSS
Raw Normal View History

2018-10-15 11:04:19 +02:00
@import 'palette';
/* ------------------ CUSTOM STYLE ------------------- */
2018-10-15 11:37:13 +02:00
$large-shadow: 0px 2px 10px rgba(0, 0, 0, 0);
$narrow-shadow: 0px 2px 6px rgba(0, 0, 0, 0);
2018-10-15 11:04:19 +02:00
$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);
2018-10-15 11:37:13 +02:00
$border-radius: 0px;
2018-10-15 11:04:19 +02:00
$border-size: 1px;
2018-10-15 11:37:13 +02:00
$color-primary: $color-red;
$color-secondary: $color-dark;
2018-10-15 11:04:19 +02:00
$color-link: $color-blue;
$color-selection: $color-blue;
$color-mark: $color-yellow;
@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;
}
2018-10-15 11:19:58 +02:00
body {
2018-10-15 11:37:13 +02:00
background: #666 url('../img/background.png');
2018-10-15 11:19:58 +02:00
padding: 30px;
2018-10-15 11:42:58 +02:00
background-attachment: fixed;
2018-10-15 11:19:58 +02:00
}
2018-10-15 11:42:16 +02:00
@media (max-width: 767.98px) {
body {
background: none;
padding: 0;
}
}
2018-10-15 11:19:58 +02:00
#wrapper {
2018-10-15 11:37:13 +02:00
background-color: #FFF
2018-10-15 11:04:19 +02:00
}
@import 'commons';
@import 'colorize';
@import 'overrides';