Skip to content

Commit

Permalink
Move Google Fonts CSS to @import in CSS to simplify view
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobrask committed Sep 21, 2011
1 parent 22ea094 commit a67de41
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 1 addition & 4 deletions lib/app.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@
title @title
meta name: 'viewport',
content: 'width=device-width,initial-scale=1.0'
link rel: 'stylesheet',
href: 'http://fonts.googleapis.com/css?family=Delius'
link rel: 'stylesheet',
href: '/style.css'
link rel: 'stylesheet', href: '/style.css'
script src: '/socket.io/socket.io.js'
script src: '/zappa/jquery.js'
script src: '/zappa/zappa.js'
Expand Down
1 change: 1 addition & 0 deletions public/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import url('http://fonts.googleapis.com/css?family=Delius');
* {
margin: 0;
padding: 0;
Expand Down
2 changes: 2 additions & 0 deletions public/style.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('http://fonts.googleapis.com/css?family=Delius');

// MIXINS
@mixin gradient-shadow {
background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .2)));
Expand Down

0 comments on commit a67de41

Please sign in to comment.