Skip to content

Commit

Permalink
Merge pull request #15 from nss-evening-cohort-04/scssjd
Browse files Browse the repository at this point in the history
initial commit
  • Loading branch information
helanan authored Dec 3, 2016
2 parents 391435c + 55da765 commit b0b3a8a
Showing 1 changed file with 92 additions and 0 deletions.
92 changes: 92 additions & 0 deletions sass/main.scss
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit b0b3a8a

Please sign in to comment.