Skip to content

Commit

Permalink
#8 adding input tag for slider only html
Browse files Browse the repository at this point in the history
  • Loading branch information
ryndel committed Dec 24, 2012
1 parent 15a24f4 commit 7f28eae
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
13 changes: 12 additions & 1 deletion public/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ body#index {
left: 20px;
top: 63px;
margin: 0 auto;

padding: 10px;
border-top: 1px solid rgba(255,255,255,0.4);
z-index:999;
Expand Down Expand Up @@ -138,6 +137,18 @@ a.external {
z-index:999;
}

#slider {
position: absolute;
width:100%;
bottom: 10px;
left: 10px;
}

#slider input {
width:90%;
margin:0 auto;
}

/* .year {
float: left;
height: 30px;
Expand Down
5 changes: 5 additions & 0 deletions views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
</div>
</div>

<div id="slider">
<form>
<input type="range" min="1" max="365" value="25" step="1">
</form>
</div>
{{#extend "scripts"}}


Expand Down

0 comments on commit 7f28eae

Please sign in to comment.