Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
ericz committed Mar 8, 2011
0 parents commit f2c899f
Show file tree
Hide file tree
Showing 10 changed files with 190 additions and 0 deletions.
68 changes: 68 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/* CSS Document */
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{font-size:100%;}
a {outline: none;} /* Gets rid of Firefox's dotted borders */
a img {border: none;} /* Gets rid of IE's blue borders */


html, body {
background-color: #f1f6e9;
}

#wrap {
width: 800px;
margin: 0 auto;
}

#head {
height: 150px;
background: url("../images/logo.png") left center no-repeat;
}

#main {
position: relative;
height: 433px;
}

#instruments {
float: left;
padding-top: 13px;
width: 104px;
}

#disp {
width: 696px;
float: left;
height: 420px;
position: relative;
}

.mark {
width: 0px;
height: 420px;
border-right: 1px solid #a3a89b;
}

#cover {
position: absolute;
width: 124px;
height: 557px;
background: url('../images/overlay.png') no-repeat;
top: -30px;
right: 0;
}

#piano, #bass, #drum {
height: 140px;
}

#piano {
background: url('../images/piano.png') no-repeat;
}

#bass {
background: url('../images/bass.png') no-repeat;
}

#drum {
background: url('../images/drum.png') no-repeat;
}
Binary file added images/bass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/drum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/overlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/piano.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Jazzroom - classy js and chill</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Language" content="en-us">
<!--<meta name="description" content="Mixest aims to maximize your exposure to strictly the newest Indie music.">
<meta name="keywords" content="music, streaming music, Indie, new, fresh, alternative"> -->


<link href="css/style.css" rel="stylesheet" type="text/css">


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.jplayer.min.js"></script>
<script type="text/javascript" src="js/jazz.js"></script>
</head>

<body>

<div id="wrap">
<div id="head"></div>
<div id="main">
<div id="instruments">
<div id="piano"></div>
<div id="bass"></div>
<div id="drum"></div>
</div>
<div id="disp">
<div class="mark"></div>

</div>
<div id="cover"></div>
</div>
</div>


</body>
</html>
Binary file added js/Jplayer.swf
Binary file not shown.
5 changes: 5 additions & 0 deletions js/jazz.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
$(document).ready(function(){



});
78 changes: 78 additions & 0 deletions js/jquery.jplayer.min.js

Large diffs are not rendered by default.

0 comments on commit f2c899f

Please sign in to comment.