Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
moz/o/w3c styles
Browse files Browse the repository at this point in the history
  • Loading branch information
nsfmc committed Feb 15, 2012
1 parent 99e0107 commit 890471c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions exercises/triangle_shadows.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html data-require="math graphie graphie-helpers-arithmetic word-problems backbone meatglue">
<html data-require="math graphie graphie-helpers-arithmetic word-problems meatglue">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Triangle Shadows</title>
Expand Down Expand Up @@ -40,13 +40,23 @@
cursor:move;
-webkit-border-radius: 4px;
-webkit-box-shadow:-2px 2px 1px #aaa;
-moz-border-radius: 4px;
-moz-box-shadow:-2px 2px 1px #aaa;
-o-border-radius: 4px;
-o-box-shadow:-2px 2px 1px #aaa;
border-radius: 4px;
box-shadow:-2px 2px 1px #aaa;
margin-right:3px;
}
[data-type=droppable]{
color:transparent;
border:2px dotted rgb(93, 146, 163);
background-color: rgb(235,245,255);
display:inline-block;
-webkit-box-shadow:0px 0px 1px #aaa;
-moz-box-shadow:0px 0px 1px #aaa;
-o-box-shadow:0px 0px 1px #aaa;
box-shadow:0px 0px 1px #aaa;
}
</style>
</head>
Expand All @@ -73,7 +83,7 @@
}

update = function(){
console.log("hi from update!", +(new Date) )
// console.log("hi from update!", +(new Date) )
var that = this;
var ev = this.get("exercise_vars");
this.set("bar", this.get("foo") * 4);
Expand Down

0 comments on commit 890471c

Please sign in to comment.