From 045597184560d4579cb5e34d3e731a5d6bb022c9 Mon Sep 17 00:00:00 2001 From: garbash Date: Fri, 28 Nov 2014 17:29:15 +0200 Subject: Implemented stylesheet structure+font change --- res/css/partials/typography.scss | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 res/css/partials/typography.scss (limited to 'res/css/partials/typography.scss') 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 -- cgit v1.3.1