summaryrefslogtreecommitdiff
path: root/res/css/partials/typography.scss
diff options
context:
space:
mode:
authorgarbash <dor.garbash@gmail.com>2014-11-28 17:29:15 +0200
committergarbash <dor.garbash@gmail.com>2014-11-28 17:29:15 +0200
commit045597184560d4579cb5e34d3e731a5d6bb022c9 (patch)
treecdc80d22e4f92712963f2cfb8bf3c7f24d964610 /res/css/partials/typography.scss
parent92eb91a3c605cbd830d20dae6488a44d3679299c (diff)
Implemented stylesheet structure+font change
Diffstat (limited to 'res/css/partials/typography.scss')
-rw-r--r--res/css/partials/typography.scss23
1 files changed, 23 insertions, 0 deletions
diff --git a/res/css/partials/typography.scss b/res/css/partials/typography.scss
new file mode 100644
index 00000000..77aa003f
--- /dev/null
+++ b/res/css/partials/typography.scss
@@ -0,0 +1,23 @@
+//Font weights
+$light: 100;
+$regular: 400;
+$bold: 600;
+
+// Base font
+$base-font-family: 'Source Sans Pro', sans-serif;
+$base-font-weight: $regular;
+$base-font-size: 13px;
+$base-line-height: 1.4;
+
+// Fixed Font
+$fixed-font-family: monospace;
+$fixed-font-size: 85%;
+$fixed-line-height: $base-line-height;
+
+// Headings
+$header-font-weight: $bold;
+
+@font-face {
+ font-family: 'MyWebFont';
+ src: url(../../font/SourceSansPro-Regular.ttf) format('ttf');
+} \ No newline at end of file