-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (107 loc) · 1.96 KB
/
Copy pathstyle.css
File metadata and controls
124 lines (107 loc) · 1.96 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
* {
margin: 0;
bottom: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #141414;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
}
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f118;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #0158db;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #0246a0;
}
.container {
width: 500px;
background-color: rgb(16, 35, 63);
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem 1.5rem;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
ul {
max-height: 200px;
overflow-y: scroll;
list-style: none;
width: 100%;
margin-top: 30px;
}
li {
padding: 1rem 0.8rem;
background-color: rgb(6, 52, 83);
margin: 10px 0;
margin-right: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
i {
cursor: pointer;
}
i:hover {
color: #ff0000;
}
input[type="text"] {
width: 100%;
padding: 0.5rem;
margin-bottom: 1rem;
border: none;
border-radius: 5px;
background-color: #14141477;
color: #fff;
}
button {
padding: 0.5rem 1rem;
border: none;
border-radius: 5px;
background-color: #0158db;
color: #fff;
cursor: pointer;
width: 100%;
}
.completed{
text-decoration: line-through;
color: #6c757d;
}
.toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #470702; /* Red color */
border: 2px solid red;
color: white;
padding: 10px;
border-radius: 5px;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s, visibility 0.5s;
}
.toast.d-block {
opacity: 1;
visibility: visible;
}