-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
137 lines (113 loc) · 2.26 KB
/
style.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-color: #0d0714;
}
#particles-js {
height: 99vh;
}
a.bg-danger {
background-color: rgb(255, 57, 57) !important;
transition: background-color 0.3s ease;
}
a.bg-danger:hover {
background-color: rgba(255, 0, 0, 0.8) !important;
}
#todo-card {
width: 60%;
height: 600px;
background-color: #1d1825;
padding: 5px 15px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
#todo-card {
width: 80%;
}
}
#todo-card .add-input {
width: 100%;
color: rgba(255, 255, 255, 0.662);
background-color: white;
padding: 5px 10px;
border: none;
border-radius: 5px;
border: 2px solid #9e78cf !important;
background-color: #1d1825;
}
#todo-card .add-input:focus {
caret-color: white;
color: rgba(255, 255, 255, 0.662);
outline: none;
}
#todo-card .add-button {
padding: 5px 10px;
background-color: #9e78cf;
border: none;
border-radius: 5px;
transition: background-color 0.1s ease;
}
#todo-card .add-button:hover {
background-color: #8143d2;
}
#todo-card .add-button:active {
background-color: #1d1825;
}
#todo-card .add-button i {
color: white;
}
#task-to-do .card,
#task-done .card {
background-color: #0d0714;
}
#task-to-do .card i,
#task-done .card i {
color: #8143d2;
}
#task-to-do .card button,
#task-done .card button {
border: none;
background-color: #0d0714;
padding: 5px;
}
.checkbox {
text-align: end;
}
#task-to-do .card button:hover i,
#task-done .card button:hover i {
transition: all 0.1s ease;
color: rgb(193, 157, 253);
}
#todo,
#done{
margin: 0;
padding: 0;
color: white;
text-align: justify;
}
#task-to-do .card p,
#task-done .card p {
color: #9e78cf;
}
/* scrolling */
.scroll {
overflow: auto;
}
.scroll::-webkit-scrollbar {
width: 10px;
}
.scroll::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
.scroll::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}