FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/JavaScript-todo-list/style.css at main · Yasholo/JavaScript · GitHub
Yasholo
/
JavaScript
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
JavaScript-todo-list
/
style.css
Copy path
More file actions
More file actions
Latest commit
History
History
History
101 lines (87 loc) · 1.5 KB
Breadcrumbs
JavaScript
/
JavaScript-todo-list
/
style.css
Copy path
File metadata and controls
101 lines (87 loc) · 1.5 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
*
{
box-sizing
:
border-box;
}
ul
{
margin
:
0
;
padding
:
0
;
}
ul
li
{
cursor
:
pointer;
position
:
relative;
padding
:
12
px
8
px
12
px
40
px
;
background
:
#
eee
;
font-size
:
18
px
;
transition
:
0.2
s
;
-webkit-user-select
:
none;
-moz-user-select
:
none;
-ms-user-select
:
none;
user-select
:
none;
}
ul
li
:
nth-child
(odd) {
background
:
#
f9f9f9
;
}
ul
li
:
hover
{
background
:
#
ddd
;
}
ul
li
.
checked
{
background
:
#
888
;
color
:
#
fff
;
text-decoration
:
line-through;
}
ul
li
.
checked
::
before
{
content
:
''
;
position
:
absolute;
border-color
:
#
fff
;
border-style
:
solid;
border-width
:
0
2
px
2
px
0
;
top
:
10
px
;
left
:
16
px
;
transform
:
rotate
(
45
deg
);
height
:
15
px
;
width
:
7
px
;
}
.
close
{
position
:
absolute;
right
:
0
;
top
:
0
;
padding
:
12
px
16
px
12
px
16
px
;
}
.
close
:
hover
{
background-color
:
#
f44336
;
color
:
white;
}
.
header
{
background-color
:
#
ebae2a
;
padding
:
30
px
40
px
;
color
:
white;
text-align
:
center;
}
.
header
:
after
{
content
:
""
;
display
:
table;
clear
:
both;
}
input
{
margin
:
0
;
border
:
none;
border-radius
:
0
;
width
:
75
%
;
padding
:
10
px
;
float
:
left;
font-size
:
16
px
;
}
.
addBtn
{
padding
:
9
px
;
width
:
25
%
;
background
:
#
d9d9d9
;
color
:
#
555
;
float
:
left;
text-align
:
center;
font-size
:
16
px
;
cursor
:
pointer;
transition
:
0.3
s
;
border-radius
:
0
;
}
.
addBtn
:
hover
{
background-color
:
green;
}
Back
|
FazBrowse Home
|
New Git URL