-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.css
135 lines (118 loc) · 2.36 KB
/
tasks.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
.sidebar {
display: flex;
flex-direction: column;
align-items: center;
width: 280px;
height: 100vh;
background-color: #ff3366;
font-family: Arial, Helvetica, sans-serif;
font-size: 23px;
position: fixed;
}
.sidebar-element {
display: block;
margin-bottom: 15px;
color: white;
cursor: pointer;
}
.sidebar-element:nth-child(1) {
background-color: aliceblue;
}
.profile-picture {
border-radius: 100px;
}
.navbar {
position: absolute;
left: 280px;
height: 70px;
width: 1230px;
/* background-color: rgba(8, 16, 23, 0.171); */
color: #ffd1dc;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 28px;
}
/* Main content area for tasks */
.main-content {
margin-left: 300px;
padding: 20px;
height: 100vh;
background-color: #1e1e2e;
color: #ffffff;
margin-top: 100px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
.section-title {
font-size: 24px;
margin-bottom: 20px;
font-weight: bold;
color: #ffd1dc;
}
/* Task Container */
.tasks-container {
background-color: #2a2a3b;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
width: 100%;
max-width: 900px;
margin: 0 auto;
}
.task-input {
display: flex;
justify-content: space-between;
gap: 10px;
}
.task-input .form-control {
flex: 1;
padding: 10px;
border: none;
border-radius: 5px;
background-color: #ffffff;
color: white;
}
.task-input .form-control::placeholder {
color: #999999;
}
.task-input .btn {
background-color: #ff3366;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s ease;
}
.task-input .btn:hover {
background-color: #e52e5c;
}
/* Task List */
.task-list {
margin-top: 20px;
}
.task-list ul {
list-style: none;
padding: 0;
}
.task-list li {
background-color: #333333;
margin: 10px 0;
padding: 15px;
border-radius: 8px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.task-list li .delete-btn {
background-color: #ff3366;
color: white;
border: none;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
}
.task-list li .delete-btn:hover {
background-color: #e52e5c;
}