This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MAP: Colour names map (palette) with tone-baed sub-names (light, dark, base, etc) | |
$palettes: ( | |
blue: ( | |
base: hsla(220, 100%, 20%, 1), | |
light: hsla(220, 50%, 50%, 1), | |
dark: hsla(220, 50%, 10%, 1) | |
), | |
gold: ( | |
base: hsla(45, 100%, 70%, 1), | |
light: hsla(45, 100%, 90%, 1), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin absolute-position($top, $right, $bottom, $left) { | |
position: absolute; | |
@if $top != '' { | |
top: $top; | |
} | |
@if $right != '' { | |
right: $right; | |
} | |
@if $bottom != '' { | |
bottom: $bottom; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": 1, | |
"fullname": "Holly Wood", | |
"firstname": "Holly", | |
"lastname": "Wood", | |
"email": "[email protected]", | |
"job": "Talent Scout", | |
"image": "https://i.pravatar.cc/64", | |
"dob": "1964/12/20", |