|
@@ -26,4 +26,20 @@
|
|
|
background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
|
|
background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
|
|
background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
|
|
|
+}
|
|
|
+
|
|
|
+@mixin light-bg-text-color( $color ) {
|
|
|
+ section.has-light-background {
|
|
|
+ &, h1, h2, h3, h4, h5, h6 {
|
|
|
+ color: $color;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+@mixin dark-bg-text-color( $color ) {
|
|
|
+ section.has-dark-background {
|
|
|
+ &, h1, h2, h3, h4, h5, h6 {
|
|
|
+ color: $color;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|