-
Notifications
You must be signed in to change notification settings - Fork 0
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
Initial typography settings #1
base: master
Are you sure you want to change the base?
Conversation
index.css
Outdated
} | ||
|
||
html, body { | ||
color: var(--base-font-color); |
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.
Not sure if base color should be defined with typography settings, but I also think it will be very useful.
index.css
Outdated
h5 { font-weight: bold; font-size: 0.875rem; } /* 14px */ | ||
|
||
/** | ||
* Body Text |
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.
Missing "Meta Text" from the design spec, which should be 12px (0.75rem). Suggestions on which HTML element this belongs to?
70b2aeb
to
e570bd6
Compare
index.css
Outdated
@font-face { | ||
font-family: "Gibson"; | ||
font-weight: 900; | ||
src: url("https://static.ticketfly.com/fonts/gibson/webfonts/2E3C08_3_0.eot"); |
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.
We'll probably want to do something so that the url that this is pointing at is configurable. (If for whatever reason, a third party chose to use this, we wouldn't want their site using our fonts).
I don't have a solution in mind, but food for thought. :)
e570bd6
to
6520857
Compare
6520857
to
984ce9f
Compare
@BrianSipple @melissaroman @spencer516
Basically follows the design spec.
I don't like how the font-faces are imported in this file right now, but just wanted to get everything up in one place for folks to look at and comment on. Suggestions on where to place them would be good.
Also see comments below.