google says its better to put css before js

This commit is contained in:
ali asaria 2014-09-13 08:38:48 -04:00
parent 420fb2e31c
commit 4d6432fd96
2 changed files with 13 additions and 14 deletions

View file

@ -57,8 +57,7 @@ body {
xmargin-left: auto; xmargin-left: auto;
xmargin-right: auto; xmargin-right: auto;
-webkit-box-shadow: 1px 3px 2px #aaa; box-shadow: 1px 3px 2px #aaa;
-moz-box-shadow: 1px 3px 2px #999;
x-webkit-transform:rotate(0.3deg); /*"is that a little off-level? i feel like it is off-level"*/ x-webkit-transform:rotate(0.3deg); /*"is that a little off-level? i feel like it is off-level"*/
} }
@ -261,7 +260,7 @@ h2 {
} }
.names input:hover { .names input:hover {
padding: 2px 2px 2px 2px; xpadding: 2px 2px 2px 2px;
xborder: solid 1px #E5E5E5; xborder: solid 1px #E5E5E5;
outline: 0; outline: 0;
width: 100px; width: 100px;
@ -270,8 +269,6 @@ h2 {
xopacity: .5; xopacity: .5;
background: none; background: none;
box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px; box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
border-radius: 10px; border-radius: 10px;
color: #aaa; color: #aaa;
text-align: right; text-align: right;

View file

@ -1,6 +1,17 @@
doctype html doctype html
html(lang="en") html(lang="en")
head head
<!-- STYLES -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<link rel="stylesheet" title="cardsize" href="/css/bigcards.css" type="text/css" media="all" />
<!-- FONTS -->
<link href='//fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Covered+By+Your+Grace' rel='stylesheet' type='text/css'>
<!-- SCRIPTS --> <!-- SCRIPTS -->
<!-- jQuery --> <!-- jQuery -->
@ -18,15 +29,6 @@ html(lang="en")
<!-- ** My Script ** --> <!-- ** My Script ** -->
<script src="/script.js"></script> <script src="/script.js"></script>
<!-- STYLES -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<link rel="stylesheet" title="cardsize" href="/css/bigcards.css" type="text/css" media="all" />
<!-- FONTS -->
<link href='//fonts.googleapis.com/css?family=Rock+Salt' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Covered+By+Your+Grace' rel='stylesheet' type='text/css'>
title= locals.pageTitle title= locals.pageTitle