-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (66 loc) · 1.14 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (66 loc) · 1.14 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: black;
color: white;
}
h1 {
text-align: center;
}
.container {
font-size: 20px ;
margin: 20px auto 20px auto;
padding: 20px;
border-radius: 20px;
width: 360px;
border: 2px solid white;
display: flex;
justify-content: space-evenly;
}
.container2 {
}
.container input {
padding: 5px;
width: 90%;
min-height: 30px;
}
.container .btn-sub {
padding: 5px;
margin-left: 5px;
}
.container div {
text-align: left;
}
.check-task {
display: flex;
flex-direction: column;
font-size: 20px ;
margin: 20px auto 20px auto;
padding: 20px;
border-radius: 20px;
width: 360px;
border: 2px solid white;
padding: 20px;
}
.checkboxs {
border: 2px solid white;
padding: 5px;
}
.task-list {
font-size: 20px ;
margin: 20px auto 20px auto;
padding: 20px;
border-radius: 20px;
width: 360px;
border: 2px solid white;
}
.checked {
text-decoration: line-through;
}
input[type=checkbox]:checked + label {
color:red;
text-decoration: line-through;
}