diff --git a/sass/main.scss b/sass/main.scss new file mode 100644 index 0000000..949cab9 --- /dev/null +++ b/sass/main.scss @@ -0,0 +1,92 @@ +body { + h1 { + color: green; + text-align: center; + } +} + +.search-bar { + text-align: center; + input{ + margin-bottom: 20px; + } +} + +#incomplete-tasks, #completed-tasks{ + padding-left: 40px; + padding-right: 40px; +} + +.new-text-container { + padding: 20px 0px; +} + +.newtodo-input { + padding-top: 5px; +} + +.inputTask{ + display:none; + width: 93%; + margin-left: 10px; + margin-top: 6px; +} + +.inputLabel { + font-size: 18px; + line-height: 40px; + width: 237px; + padding: 0 0 0 11px; +} + +.checkboxStyle { + margin-top: 15px !important; +} + +h3 { + color: #333; + font-weight: 700; + font-size: 15px; + border-bottom: 2px solid #333; + padding: 30px 0 10px; + margin: 0; +} + +li * { + float: left; +} +li, h3 { + clear:both; + list-style:none; +} + +label[for='new-task'] { + display: block; + margin: 0 0 20px; +} + +input#new-task { + float: left; + width: 318px; +} + +li { + overflow: hidden; + padding: 20px 0; + border-bottom: 1px solid #eee; +} + +#completed-tasks { + label { + text-decoration: line-through; + color: #888; + } +} + +ul li.editMode input[type=text] { + display:block; +} + +ul li.editMode label { + display:none; +} \ No newline at end of file