-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (70 loc) · 1.37 KB
/
style.css
File metadata and controls
81 lines (70 loc) · 1.37 KB
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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
margin-bottom: 10px;
outline: none;
}
body {
margin: auto;
width: 50%;
padding: 30px;
font-size: 16px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.item {
list-style: none;
background-color: #edf9fa;
margin-bottom: 5px;
color: #3c3c3c;
text-align: left;
vertical-align: middle;
font-size: 18px;
padding: 18px 8px 28px 20px;
border-radius: 8px;
opacity: 1;
-webkit-transition: opacity 1000ms linear;
transition: opacity 1000ms linear;
}
li.item.done {
text-decoration: line-through !important;
list-style: none;
background-color: rgb(156, 253, 224);
}
li.item.done:hover {
background-color: rgb(130, 247, 212);
}
.inputgroup {
padding: 8px;
display: inline-block;
width: 100%;
}
#enter {
background-color: rgb(19, 29, 56);
border: 0;
color: aliceblue;
font-size: 18px;
border-radius: 8px;
padding: 12px;
}
#enter:hover {
background-color: rgb(34, 50, 95);
cursor: pointer;
}
span.close {
margin-left: 160px;
}
.delete {
background-color: rgb(238, 75, 124);
border: 0;
color: aliceblue;
font-size: 16px;
padding: 8px;
border-radius: 50px;
min-width: 120px;
float: right;
}
.delete:hover {
background-color: rgb(233, 55, 108);
cursor: pointer;
}