summaryrefslogtreecommitdiff
path: root/res/css/modules/typography.scss
diff options
context:
space:
mode:
authorOfer Lehr <ofer@oferlehr.com>2014-12-06 22:43:12 +0200
committerAlon Levy <alon@pobox.com>2014-12-06 23:34:55 +0200
commitdb363484901a9521949cdd394c0701bb51153e2b (patch)
treeecf7af4573a457f1747340f41f11029ce2469ee2 /res/css/modules/typography.scss
parent65f2db92de282047317dab0c4669c2c255328a2e (diff)
new info box (now card) styling - Partial
added a class to the info card to style different types in css. also rearranged colors in helpers.js (alon: changed implementation and broke the edit, will fix in the morning)
Diffstat (limited to 'res/css/modules/typography.scss')
-rw-r--r--res/css/modules/typography.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/res/css/modules/typography.scss b/res/css/modules/typography.scss
index 8a7d8fe7..6a8c1102 100644
--- a/res/css/modules/typography.scss
+++ b/res/css/modules/typography.scss
@@ -16,6 +16,14 @@
url('../font/sourcesanspro_semibold/SourceSansPro-Semibold-webfont.ttf') format('truetype'); /* Safari, Android, iOS */
}
+@font-face {
+ font-family: 'Source_Bold';
+ src: url('../font/sourcesanspro_bold/SourceSansPro-Bold-webfont.eot'); /* IE9 Compat Modes */
+ src: url('../font/sourcesanspro_bold/SourceSansPro-Bold-webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../font/sourcesanspro_bold/SourceSansPro-Bold-webfont.woff') format('woff'), /* Modern Browsers */
+ url('../font/sourcesanspro_bold/SourceSansPro-Bold-webfont.ttf') format('truetype'); /* Safari, Android, iOS */
+}
+
//Font size
$h1-size: 30px;
$h2-size: 24px;
@@ -31,6 +39,7 @@ $bold: 600;
// Base font
$base-font-family: 'Source_Regular', sans-serif;
$semibold-font-family: 'Source_Semibold', sans-serif;
+$bold-font-family: 'Source_Bold', sans-serif;
$base-font-weight: $regular;
$base-font-size: 12px;