This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var os = (function() { | |
var ua = navigator.userAgent.toLowerCase(); | |
return { | |
isWin : /windows/.test(ua), | |
ismacOs : /mac os/.test(ua) | |
}; | |
}()); | |
var browser = (function() { | |
var ua = navigator.userAgent.toLowerCase(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass"; | |
/* ---------- Global ---------- */ | |
body { | |
background-color: #EEF0F2; | |
color: #333; | |
font: 12px/1 Arial, Helvetica, Verdana, sans-serif; | |
} |