Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinms committed Dec 16, 2012
0 parents commit 10f9588
Show file tree
Hide file tree
Showing 8 changed files with 688 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sketch/*
115 changes: 115 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
/*
Quentin Mazars-Simon
@quentinms
*/

*{
margin: 0;
padding: 0;
}

body{
font-family: "Helvetica Neue", Helvetica, Arial;
font-weight: 100;
}

#main_panel{

}


nav {
width: 250px;
float: left;
display: inline;
margin: 10px 10px 10px 100px;
padding: 0;

}

nav ul {
list-style: none;
text-align: center;
}

nav ul li {
border-bottom: 1px solid black;
}

nav ul li a{
text-decoration: none;
color: inherit;
font-size: 30px;

}

h1{
font-size: 45px;
font-weight: 100;
text-align: center;
margin: 20px;
}

#newSongForm{
float: left;
font-size: 20px;
margin: 5%;
display: none;
}

#newSongForm input{
font-size: 20px;
width: 400px;
font-family: "Helvetica Neue";
font-weight: 100;

}
#newSongForm button{

font-size: 20px;
width: 100px;
font-family: "Helvetica Neue";
font-weight: 100;
margin: 20px auto 20px auto;

position: relative;
left: 25%;
}

#content{


}

#illustration{
width: 500px;
height: 500px;
margin: auto;
background: url('http://lorempixel.com/500/500/abstract/');

background-repeat: no-repeat;
background-position: center center;

/*
If do not want to always be squared
background-size: contain;
*/
}

#playImage{
margin: 200px;
}

#time{
width: 500px;
height: 20px;
margin: auto;
text-align: right;
}

#waveform {
width: 500px;
height: 75px;
margin: auto;
}

Binary file added img/pause.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 img/play.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!--
Quentin Mazars-Simon
@quentinms
-->

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>SoundCloud Video Clip</title>

<link rel="stylesheet" type="text/css" href="css/index.css" media="screen" />

<!-- Scripts -->
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="https://connect.soundcloud.com/sdk.js"></script>
<script type="text/javascript" src="js/waveform.js"></script>
<script type='text/javascript' src="js/index.js"></script>

</head>

<body>
<h1>SoundCloud Video Clip</h1>

<nav></nav>

<div id="#main_panel">
<form id="newSongForm" action="javascript:selectSong($('#song_url').val(),$('#song_tag').val());">
<label for="song_url">URL:</label>
<input id="song_url" type="url" placeholder="https://soundcloud.com/tea-leigh/color-theory-1"/><br />
<label for="song_tag">Tag:</label>
<input id="song_tag" type="text" placeholder="Color Theory"/><br />
<button type="button" onclick="javascript:hideForm();" >Cancel</button> <button type="submit">Submit</button>
</form>

<div id="content">
<div id="illustration">
<img id="playImage" alt="Play/Pause icon" src="img/play.png"></img>
</div>
<div id="comment"></div>
<div id="time"> </div>
<div id="waveform"></div>
</div>
</div>

</body>
</html>
Loading

0 comments on commit 10f9588

Please sign in to comment.