1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 00:39:25 +00:00

Added sass, and initial sass partials

This commit is contained in:
2022-01-25 11:20:12 +00:00
parent fc00ecd2c5
commit 6c114bd9c2
8 changed files with 227 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
@mixin on-event($self: false) {
@if $self {
&,
&:hover,
&:active,
&:focus {
@content;
}
} @else {
&:hover,
&:active,
&:focus {
@content;
}
}
}

View File

@@ -0,0 +1,5 @@
// Font stacks
$text-font-stack: 'Roboto', 'Arial', sans-serif !default;
// Colours
$text-colour: rgb(34, 34, 34) !default;

View File

@@ -0,0 +1,4 @@
body {
font-family: $text-font-stack;
color: $text-colour;
}

View File

@@ -0,0 +1,4 @@
@import 'abstracts/variables';
@import 'abstracts/mixins';
@import 'base/typography';