-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (52 loc) · 960 Bytes
/
Copy pathstyle.css
File metadata and controls
55 lines (52 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body{
background-color:#abc
}
*, h1, button{
font-family: 'Nunito', sans-serif;
}
.fade-enter-active, .fade-leave-active{
transition: opacity .5s;
}
.fade-enter, .fade-leave-active
{ opacity: 0;
}
.tasks{
width:100%;
max-width: 45rem;
padding :1em;
margin :1em auto;
overflow :auto;
}
.tasks__list
{
clear:both;
}
.tasks__item{
margin-bottom:.5em;
position :relative;
}
.tasks__item__toggle{
cursor:pointer;
width:100%;
text-align:left
padding .85em 2.25em .85em 1em;
background-color: rgba(black, .05);
border :1px solid rgba(black, .1);
}
.tasks__item__toggle:hover{
background-color:rgba(black, .1);
border-color:rgba(black, .15);
}
.tasks__item__toggle--completed{
text-decoration :line-through;
}
.tasks__item__remove{
position :absolute;
height :100%;
top :50%;
right :0;
transform :translateY(-50%)
}
.footer /p{
text-align: center;
}