summaryrefslogtreecommitdiff
path: root/res/css/partials/typography.scss
diff options
context:
space:
mode:
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