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/base.scss | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 res/css/partials/base.scss (limited to 'res/css/partials/base.scss') diff --git a/res/css/partials/base.scss b/res/css/partials/base.scss new file mode 100644 index 00000000..ba9413d1 --- /dev/null +++ b/res/css/partials/base.scss @@ -0,0 +1,39 @@ +@import "../modules/colors"; +@import "../modules/mixins"; + +//Globals +html, body { + height: 100%; +} + +body { + overflow-y: hidden; + overflow-x:auto; + margin: 0; + min-width: 980px; + padding: 0; + color: #FFF; + font-size: 14px; + background-color:#080808; +} + +a{ + text-decoration: none; + font-style: italic; +} + +a:link { + color: #FFF; +} + +a:visited { + color: #FFF; +} + +a:hover { + color: #EDE275; +} + +a:active { + color: #FFF; +} \ No newline at end of file -- cgit v1.3.1