ui: tweak modular scale, move from oxygen to inter

This commit is contained in:
Jean-Philippe Sirois
2020-05-22 01:33:40 -04:00
parent 429197693b
commit 2d267a8064
6 changed files with 24 additions and 18 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ module.exports = {
options: { options: {
fonts: [ fonts: [
{ {
family: `Oxygen`, family: `Inter`,
variants: [`400`, `700`], variants: [`400`, `700`],
}, },
{ {
+1 -1
View File
@@ -5,7 +5,7 @@ export const DiscordButtonWrapper = styled.a`
margin-top: 32px; margin-top: 32px;
display: flex; display: flex;
align-items: center; align-items: center;
font-family: "Oxygen", sans-serif; font-family: "Montserrat", sans-serif;
font-size: 24px; font-size: 24px;
font-weight: 700; font-weight: 700;
text-decoration: none; text-decoration: none;
+2
View File
@@ -1,6 +1,7 @@
import { Link } from "gatsby" import { Link } from "gatsby"
import Particles from "react-particles-js" import Particles from "react-particles-js"
import styled, { css } from "styled-components" import styled, { css } from "styled-components"
import { fontFamily } from "../../design/typography"
import TPHLogo from "../../images/tph-logo.svg" import TPHLogo from "../../images/tph-logo.svg"
export const HomeWrapper = styled.header` export const HomeWrapper = styled.header`
@@ -24,6 +25,7 @@ export const TitleWrapper = styled.div`
export const Title = styled.h1` export const Title = styled.h1`
margin: 0; margin: 0;
font-family: ${fontFamily.header};
font-weight: 700; font-weight: 700;
font-size: 88px; font-size: 88px;
text-transform: uppercase; text-transform: uppercase;
+13 -11
View File
@@ -44,29 +44,31 @@ export const MarkdownWrapper = styled.div`
} }
h1 { h1 {
${modularScaleCSS(6)};
}
h2 {
${modularScaleCSS(5)};
}
h3 {
${modularScaleCSS(4)}; ${modularScaleCSS(4)};
} }
h4 { h2 {
${modularScaleCSS(3)}; ${modularScaleCSS(3)};
@media screen and (min-width: 1440px) {
margin-left: -27px;
}
} }
h5 { h3 {
${modularScaleCSS(2)}; ${modularScaleCSS(2)};
} }
h6 { h4 {
${modularScaleCSS(1)}; ${modularScaleCSS(1)};
} }
h5,
h6 {
font-size: ${BASE_FONT_SIZE}px;
line-height: ${BASE_LINE_HEIGHT}px;
}
h1 .anchor svg, h1 .anchor svg,
h2 .anchor svg, h2 .anchor svg,
h3 .anchor svg, h3 .anchor svg,
+2
View File
@@ -1,6 +1,7 @@
import { Link } from "gatsby" import { Link } from "gatsby"
import styled, { css } from "styled-components" import styled, { css } from "styled-components"
import { transparentize } from "polished" import { transparentize } from "polished"
import { fontFamily } from "../../design/typography"
export const SidebarWrapper = styled.div` export const SidebarWrapper = styled.div`
box-sizing: border-box; box-sizing: border-box;
@@ -36,6 +37,7 @@ export const Title = styled(Link)`
font-weight: 700; font-weight: 700;
padding: 20px 0 0 20px; padding: 20px 0 0 20px;
text-decoration: none; text-decoration: none;
font-family: ${fontFamily.header};
&:hover { &:hover {
opacity: 0.85; opacity: 0.85;
+5 -5
View File
@@ -1,9 +1,9 @@
const FONT_OXYGEN = "Oxygen, sans-serif" const FONT_INTER = "Inter, sans-serif"
const FONT_MONTSERRAT = "Montserrat, sans-serif" const FONT_MONTSERRAT = "Montserrat, sans-serif"
export const BASE_FONT_SIZE = 18 export const BASE_FONT_SIZE = 20
export const BASE_LINE_HEIGHT = 25 export const BASE_LINE_HEIGHT = 26
export const MODULAR_SCALE = 1.1487 export const MODULAR_SCALE = 1.2
function modularFontSize(power: number) { function modularFontSize(power: number) {
return BASE_FONT_SIZE * Math.pow(MODULAR_SCALE, power) return BASE_FONT_SIZE * Math.pow(MODULAR_SCALE, power)
@@ -25,7 +25,7 @@ export function modularScale(power: number) {
export const fontFamily = { export const fontFamily = {
header: FONT_MONTSERRAT, header: FONT_MONTSERRAT,
body: FONT_OXYGEN, body: FONT_INTER,
} }
export default fontFamily export default fontFamily