Created
August 23, 2012 11:49
-
-
Save chestozo/3435893 to your computer and use it in GitHub Desktop.
Real styles go here
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
background: #CCC; | |
} | |
body { | |
position: absolute; | |
margin: 0; | |
padding: 0; | |
left: 50%; | |
top: 50%; | |
margin-left: -160px; | |
margin-top: -240px; | |
width: 320px; | |
height: 480px; | |
background: #FFF; | |
box-shadow: 0px 0px 10px #999; | |
} | |
/* Real styles go here */ | |
.todo-item { | |
background: #FFF; | |
height: 2em; | |
position: relative; | |
font: 12pt arial; | |
border-bottom: 1px dotted #EEE; | |
} | |
.todo-item_check { | |
position: absolute; | |
top: 50%; | |
margin-top: -7px; | |
width: 14px; | |
height: 16px; | |
margin-left: 10px; | |
} | |
.todo-item label { | |
margin-left: 32px; | |
line-height: 2em; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="todo-item"> | |
<input type="checkbox" class="todo-item_check"/> | |
<label>Do some shit</label> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split-vertical","fontsize":"70","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment