-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (67 loc) · 1.19 KB
/
Copy pathstyle.css
File metadata and controls
80 lines (67 loc) · 1.19 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
* {
margin: 0;
padding: 0;
outline: 0;
}
body {
background-color: #f5f5f5;
}
.container {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background-color: #fafafa;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
width: 460px;
height: 680px;
text-align: center;
font-family: "Nunito", sans-serif;
}
.title {
margin: 12px 0;
}
.add-elements {
margin: 12px 0;
}
.input {
padding: 6px 4px;
width: 70%;
}
.btn {
padding: 7px 14px;
background-color: #00b0ff;
border: none;
border-radius: 4px;
color: #fafafa;
cursor: pointer;
}
.btn:hover {
background-color: #1565c0;
}
.element-group {
height: 550px;
overflow-y: scroll;
}
.element-group::-webkit-scrollbar {
display: none;
}
.element-group__list {
padding: 15px;
}
.element-group__list__item {
list-style: none;
padding: 10px 5px;
background-color: #fff;
margin: 12px 0;
box-shadow: 0 2px 8px rgba(0, 0, 0,0.16);
border-radius: 4px;
transition: 0;
}
.element-group__list__item:hover{
background-color: #e0e0ee;
}
.checked{
text-decoration: line-through;
background-color: #e0e0ee;
}