FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
50Projects-HTML-CSS-JavaScript/Source-Code/ToDoList/style.css at main · aushmish/50Projects-HTML-CSS-JavaScript · GitHub
aushmish
/
50Projects-HTML-CSS-JavaScript
Public
forked from
tajulafreen/50Projects-HTML-CSS-JavaScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
50Projects-HTML-CSS-JavaScript
/
Source-Code
/
ToDoList
/
style.css
Copy path
More file actions
More file actions
Latest commit
History
History
History
83 lines (71 loc) · 1.15 KB
Breadcrumbs
50Projects-HTML-CSS-JavaScript
/
Source-Code
/
ToDoList
/
style.css
Copy path
File metadata and controls
83 lines (71 loc) · 1.15 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
body
{
font-family
:
Arial
,
sans-serif;
display
:
flex;
justify-content
:
center;
align-items
:
center;
height
:
100
vh
;
margin
:
0
;
background-color
:
#
f4f4f4
;
}
.
container
{
background-color
:
#
fff
;
padding
:
20
px
;
border-radius
:
8
px
;
box-shadow
:
0
0
10
px
rgba
(
0
,
0
,
0
,
0.1
);
}
h1
{
text-align
:
center;
}
.
form-container
{
margin-bottom
:
20
px
;
}
#
task-input
,
#
category-select
,
button
{
margin
:
5
px
;
padding
:
10
px
;
border
:
1
px
solid
#
ccc
;
border-radius
:
4
px
;
}
button
{
background-color
:
#
007bff
;
color
:
#
fff
;
border
:
none;
cursor
:
pointer;
}
button
:
hover
{
background-color
:
#
0056b3
;
}
.
filter-container
{
margin-bottom
:
20
px
;
display
:
flex;
justify-content
:
space-between;
align-items
:
center;
}
ul
{
list-style-type
:
none;
padding
:
0
;
}
li
{
background-color
:
#
f9f9f9
;
margin
:
5
px
0
;
padding
:
10
px
;
border-radius
:
4
px
;
display
:
flex;
justify-content
:
space-between;
align-items
:
center;
}
.
task-text
{
flex
:
1
;
}
.
delete-btn
{
background-color
:
#
dc3545
;
color
:
#
fff
;
border
:
none;
padding
:
5
px
10
px
;
border-radius
:
4
px
;
cursor
:
pointer;
}
.
delete-btn
:
hover
{
background-color
:
#
c82333
;
}
Back
|
FazBrowse Home
|
New Git URL