first commit

This commit is contained in:
Senad Uka
2018-05-07 16:07:00 +02:00
commit 8b4f09f9d5
3368 changed files with 852614 additions and 0 deletions

32
sass/pages/_home.scss Executable file
View File

@@ -0,0 +1,32 @@
.todo-item {
border-bottom: 1px solid #eee;
button {
display: none;
margin-top: 8px;
}
&:hover {
background: rgb(254, 254, 244);
button {
display: inline-block;
}
}
}
@media (max-width: $screen-xs-max) {
.todo-item {
.text-right {
display: none;
}
}
.todo-item:hover {
.text-right {
display: block;
text-align: center;
margin-bottom: 12.5px;
}
}
}