-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyStyle.css
More file actions
87 lines (80 loc) · 1.42 KB
/
myStyle.css
File metadata and controls
87 lines (80 loc) · 1.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body{
margin: 0;
background: #fff
}
h1{
font-family: monospace;
}
#container{
margin: auto;
width: 90%;
background: #f3f3f3;
text-align: center;
}
#form-container{
background:#35424a;
color: white;
width: 80%;
margin: auto;
padding: 10px;
border:2px solid black;
border-radius: 15px;
}
#todo{
border-radius:10px;
width: 80%;
height: 30px;
font-size: 20px;
padding-left: 10px;
}
button{
background:#e8491d;
margin-top: 15px;
color:#fff;
width: 20%;
height: 30%;
border: 0;
font-size: 20px;
padding: 5px;
}
#todolist ul li {
border:2px solid #b5c5dd;
list-style: none;
width: 80%;
opacity: 1;
transition: all 0.7s ease-out;
height: 40px;
margin: 5px auto;
text-align: left
}
#todolist ul li label{
margin: 0 auto;
vertical-align: middle;
height: 100%;
line-height: 40px;
font-size: 24px;
}
#todolist ul li #check{
width: 30px;
height: 30px;
margin: 5px;
float: left;
border:2px solid #b5c5dd;
position: relative;
outline: 0;
}
.visual{
opacity: 1 !important;
border-radius: 10px;
}
#todolist ul li #check:checked:after{
content: '\2714';
font-size: 20px;
position: absolute;
color:black;
left: 7px;
}
#todolist ul li input[type="checkbox"]:checked+label{
text-decoration: line-through;
color: rgba(0,0,0,0.3)
}