-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.css
More file actions
81 lines (64 loc) · 1.39 KB
/
task.css
File metadata and controls
81 lines (64 loc) · 1.39 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
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap");
.container {
font-family: sans-serif;
}
body
{
background-color:cadetblue;
}
.app h1 {
font-size: 40px;
font-family: "Rajdhani", sans-serif;
}
.app form {
display: flex;
}
.app form input {
border: none;
font-size: 18px;
background-color: #3c4979;
width: 90%;
}
.app form button {
border: none;
font-size: 25px;
font-weight: 600;
height: 42px;
width: 10%;
}
.app ul li {
padding: 10px;
}
.check {
width: 0.8em;
height: 0.8em;
cursor: pointer;
border-radius: 50%;
background-color: white;
border: 1px solid rgb(255, 255, 255);
-webkit-appearance: none;
}
.check:checked {
background-color: #1dd2af;
}
.task {
font-size: 18px;
padding: 0 10px;
width: fit-content;
background: transparent;
border: none;
color: #fff;
}
.task:focus {
outline: none;
}
.app ul li i {
cursor: pointer;
}
.app ul li i:hover {
color: rgb(255, 82, 82);
}
.completed {
color: rgba(192, 192, 192, 0.8);
text-decoration: line-through;
}