-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathstyles.css
86 lines (74 loc) · 1.24 KB
/
styles.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
font-family: Verdana, sans-serif;
background-color: #dcd4e8;
}
h1 {
margin: 0 auto;
text-align: center;
padding: 10px 20px;
font-size: 24px;
font-weight: bold;
color: #26222c;
}
img {
padding: 0;
display: block;
width: 100%;
margin: 10px auto;
}
input {
font-size: 18px;
color: #4d4d4d;
background-color: #f7f7f7;
width: 100%;
padding: 13px 13px 13px 20px;
box-sizing: border-box;
border: 3px solid #febad3;
}
input:focus {
background: #fff;
border: 3px solid #febad3;
outline: none;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
background: #fff;
height: 40px;
line-height: 40px;
color: #000;
}
li:nth-child(2n) {
background: #f7f7f7;
}
span {
background: #e74c3c;
margin-right: 5px;
height: 40px;
text-align: center;
color: white;
width: 0;
display: inline-block;
transition: 0.2s linear;
opacity: 0;
}
li:hover span {
width: 40px;
opacity: 1;
}
#container {
width: 360px;
margin: 100px auto;
background: #f7f7f7;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.fa-pencil-alt {
float: right;
}
.completed {
color: gray;
text-decoration: line-through;
}