-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add sass support and fonts #33
Changes from 1 commit
1a67854
f085b30
a934bf6
6768672
74b445a
4337de5
2cc2a8f
8434021
5f212f0
c8b2e25
69fab84
7827548
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
:root { | ||
/** Typography **/ | ||
--family-sans-serif: "Source Sans 3", sans-serif; | ||
--font-weight-normal: 400; | ||
--font-weight-medium: 500; | ||
--font-weight-semibold: 600; | ||
--font-weight-bold: 700; | ||
|
||
/** Colours **/ | ||
|
||
--blue: hsla(194, 60%, 59%, 1); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefix colours with |
||
--green: hsla(163, 35%, 49%, 1); | ||
--yellow: hsla(42, 92%, 70%, 1); | ||
--orange: hsla(25, 76%, 64%, 1); | ||
--red: hsla(359, 64%, 63%, 1); | ||
--white: hsla(0, 0%, 100%, 1); | ||
|
||
--indigo-100: hsla(244, 100%, 98%, 1); | ||
--indigo-200: hsla(244, 93%, 93%, 1); | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@charset "UTF-8"; | ||
|
||
/* Abstracts */ | ||
|
||
@import "./abstracts/_variables.css"; | ||
|
||
/* Base */ | ||
|
||
@import "./base/_reset.css"; | ||
@import "./base/_base.css"; | ||
|
||
h1 { | ||
line-height: 1; | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@import "./_fonts.css"; | ||
|
||
h1 { | ||
font-family: var(--family-sans-serif); | ||
} |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's this for?