diff options
author | raylu <raylu@mixpanel.com> | 2011-11-05 03:14:50 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-11-05 03:14:50 -0700 |
commit | c29b485df3475e251dce77e68d61462e2619ba9e (patch) | |
tree | b929fa55133c19f2873da899b769fffa6f6c3e30 /css | |
parent | a5e930a4e59cb0776cb4ee5826e2e9e3624c9f2a (diff) | |
download | pathery-c29b485df3475e251dce77e68d61462e2619ba9e.tar.xz |
fix async font/js loading issues
Diffstat (limited to 'css')
-rw-r--r-- | css/page.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/css/page.css b/css/page.css index 2689aec..d38a21b 100644 --- a/css/page.css +++ b/css/page.css @@ -1,6 +1,12 @@ +html {
+ font-family: Helvetica, sans-serif;
+}
+html.wf-active {
+ font-family: Cantarell, Helvetica, sans-serif;
+}
+
body {
font-size: 16px;
- font-family: helvetica, sans-serif;
text-shadow: rgba(0,0,0,.01) 0 0 1px; /* this is definitely not a webkit-specific hack to fix font aliasing */
background-color: #121212;
color: #ddd;
|