Big changes f.e. changeing theme

This commit is contained in:
2015-04-17 13:44:04 +03:00
parent d09f65cece
commit 7f2f7fe494
51 changed files with 3404 additions and 2137 deletions

17
theme/css/sass/_vars.scss Normal file
View File

@@ -0,0 +1,17 @@
$white: #EEEEEE;
//$white: #DFDFDF;
$black: #272822;
$gray: #8E927E;
$prebg: #E6E6E6;
$accent1: #38C5C5;
$font1: 'Raleway', sans-serif;
$font2: 'Oswald', sans-serif;
$font3: 'PT Mono', monospace;
@mixin transition{
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}