Skip to content

Commit

Permalink
feat(gitbook): TDSify headings
Browse files Browse the repository at this point in the history
  • Loading branch information
lzcabrera committed Jan 11, 2018
1 parent f8f5fbe commit 2a67559
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions guide/styles/website.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
@font-face {
font-family: 'TELUS-Web';
font-style: normal;
font-weight: 300;
src: url('https://cdn.telus.digital/thorium/core/fonts/aff68211-86bb-476d-882e-f7a3face144c.woff2')
format('woff2'),
url('https://cdn.telus.digital/thorium/core/fonts/50d35bbc-dfd4-48f1-af16-cf058f69421d.woff')
format('woff'),
url('https://cdn.telus.digital/thorium/core/fonts/278bef59-6be1-4800-b5ac-1f769ab47430.ttf')
format('truetype'),
url('https://cdn.telus.digital/thorium/core/fonts/56be84de-9d60-4089-8df0-0ea6ec786b84.eot?#iefix')
format('eot');
}

@font-face {
font-family: 'TELUS-Web';
font-style: normal;
Expand All @@ -11,6 +25,21 @@
url('https://cdn.telus.digital/thorium/core/fonts/etext/e0781a75-0ecb-464e-b6e9-85780ddc0921.eot?#iefix')
format('eot');
}

@font-face {
font-family: 'TELUS-Web';
font-style: normal;
font-weight: 500;
src: url('https://cdn.telus.digital/thorium/core/fonts/etext/dc50c02f-3f77-4e75-b89c-e3f9bb4752e6.woff2')
format('woff2'),
url('https://cdn.telus.digital/thorium/core/fonts/etext/ce6f5b38-1cb5-4a27-8182-583aa68b2436.woff')
format('woff'),
url('https://cdn.telus.digital/thorium/core/fonts/etext/ff06cde7-e06a-4cf0-af4d-5b2f737bf544.ttf')
format('truetype'),
url('https://cdn.telus.digital/thorium/core/fonts/etext/706ec8e5-fe4a-4518-91a6-7aba4d3d333f.eot?#iefix')
format('eot');
}

@font-face {
font-family: 'TELUS-Web';
font-style: normal;
Expand All @@ -25,6 +54,10 @@
format('eot');
}

html {
font-size: 16px;
}

.book-summary,
.book-body {
font-family: 'TELUS-Web', 'Helvetica Neue', Helvetica, Arial, sans-serif;
Expand All @@ -33,6 +66,10 @@
color: #2a2c2e;
}

.book.font-size-2 .book-body .page-inner section {
font-size: 1rem;
}

strong {
font-weight: 700;
}
Expand Down Expand Up @@ -74,3 +111,44 @@ strong {
color: #54595f;
text-decoration: underline;
}

.markdown-section h1 {
color: #4b286d;
font-weight: 400;
font-size: 1.75rem;
}

@media (min-width: 768px) {
.markdown-section h1 {
font-weight: 300;
font-size: 2.75rem;
}
}

.markdown-section h2 {
color: #4b286d;
font-weight: 400;
font-size: 1.5rem;
}

@media (min-width: 768px) {
.markdown-section h2 {
font-weight: 400;
font-size: 1.75rem;
}
}

.markdown-section h3 {
font-size: 1.25rem;
}

.markdown-section h4 {
font-size: 1rem;
}

#book-search-results .search-results .has-results .search-results-item a {
color: #54595f;
text-decoration: underline;
font-weight: 400;
font-size: 1rem;
}

0 comments on commit 2a67559

Please sign in to comment.