-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (84 loc) · 1.65 KB
/
style.css
File metadata and controls
84 lines (84 loc) · 1.65 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
82
83
84
*{
margin: 0;
padding: 0;
box-sizing: border-box;
box-shadow: none !important;
font-family:'Poppins';
}
.container-fluid{
width: 100%;
height: 100vh;
}
.todo-app .todo-heading{
display: flex;
align-items: center;
justify-content: center;
margin-right: auto;
height: 70px;
}
.todo-app .todo-heading h1{
color: green;
font-weight: bolder;
}
.todo-app .todo-heading img{
padding: 5px;
}
.todo-app .typingBox{
height: 50px;
display: flex;
align-items: center;
margin: 10px 0;
}
.todo-app .typingBox input{
border: 1px solid green;
}
.list-group{
max-height: 300px;
height: 100%;
overflow-y: scroll;
scroll-behavior: smooth;
border: 2px solid green;
}
.list-group .list-group-item{
border: none;
position: relative;
padding-left: 60px;
}
.list-group .list-group-item hr{
margin: 3px 0;
color: green;
}
.list-group .list-group-item::before{
content: '';
position: absolute;
height: 25px;
width: 25px;
border-radius: 50%;
background-image: url(imgs/circle_7022209.png);
background-position: center;
background-size: cover;
border-radius: 50%;
left: 10px;
}
.list-group .list-group-item i{
content: '';
position: absolute;
border-radius: 50%;
right: 30px;
padding: 3px;
font-weight: bolder;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
color: green;
}
.list-group::-webkit-scrollbar{
width: 0;
}
.list-group .list-group-item.checked{
color: grey;
text-decoration: line-through;
}
.list-group .list-group-item.checked::before{
background-image: url(imgs/check.png);
}