-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.css
72 lines (72 loc) · 1.27 KB
/
todo.css
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.contain{
width: 400px;
margin: 100px auto;
background-color: #f7f7f7;
box-shadow: 0 0 5px rgba(20,20,20,0.3);
}
li:hover span {
width: 40px;
opacity: 1.0;
}
.fa-plus{
float: right;
}
li span {
background: #e74c3c;
height: 40px;
margin-right: 20px;
text-align: center;
color: white;
width: 0;
display: inline-block;
transition: 0.2s linear;
opacity: 0;
}
body{
font-family: 'Roboto', sans-serif;
background-repeat: no-repeat;
background-size: cover;
}
h1{
background-color: #2980b9;
padding: 10px 20px;
margin: 0;
color: lightgreen;
font-size: 24px;
text-transform: capitalize;
font-weight: normal;
}
li{
padding: 10px 20px;
height: 30px;
line-height: 30px;
background-color: #D01C1FFF;
color: white;
font-size: 18px;
}
li:nth-child(2n){
background-color: #56A8CBFF;
}
input:focus{
background-color: lightgray;
border: 2px solid #2980b9;
outline: #2980b9;
}
input{
border: none;
color: black;
font-size: 18px;
background-color: #56A8CBFF;
width: 100%;
padding: 13px 13px 13px 20px;
box-sizing: border-box;
}
ul{
list-style: none;
margin: 0;
padding: 0;
}
.done{
color: gray;
text-decoration: line-through;
}