Created
February 5, 2016 14:03
-
-
Save SpencerCooley/549570ec0d17cc8efe55 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.wrapper { | |
width: 100%; | |
} | |
.wrapper .todo-container { | |
font-family: Sans-Serif; | |
background-color: #fff; | |
padding: 10px; | |
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75); | |
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75); | |
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75); | |
width: 80%; | |
margin: 0 auto; | |
} | |
.wrapper .todo-container h1 { | |
font-size: 15px; | |
} | |
.wrapper .todo-container .todo-list .list-item { | |
padding: 5px; | |
background-color: #EDEDED; | |
margin: 5px; | |
text-align: center; | |
} | |
.wrapper .new-todo-box { | |
height: 20px; | |
width: 98%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment