2016-07-15 21:13:46 +10:00
|
|
|
$base-color: #777;
|
|
|
|
$second-color: #333;
|
|
|
|
$heading-font: Arial;
|
|
|
|
|
2021-03-23 12:03:26 +11:00
|
|
|
@import 'mixins';
|
|
|
|
|
2016-07-15 21:13:46 +10:00
|
|
|
.element {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
background: black;
|
|
|
|
p{
|
|
|
|
color: $second-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.link{
|
|
|
|
color: $second-color;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.heading{
|
|
|
|
font-family: $heading-font;
|
2021-03-23 12:03:26 +11:00
|
|
|
@include ninjalink ('blue', 'red', 'pink', 'purple')
|
2016-07-15 21:13:46 +10:00
|
|
|
}
|