-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodos.component.css
More file actions
53 lines (47 loc) · 956 Bytes
/
todos.component.css
File metadata and controls
53 lines (47 loc) · 956 Bytes
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
.todo {
display:flex;
padding: 10px 15px;
background-color: aqua;
border-bottom: 1px solid rgb(11, 61, 243);
}
.todo:nth-child(even){
background-color: rgb(216, 5, 244);
}
.todo:last-of-type{
border-bottom: 0;
}
.todo .id {
flex: 1 1 50px;
}
.todo .content {
flex:1 1 100%;
}
.todo .done .content{
text-decoration: line-through;
}
.todo-input {
display:block;
width: 100%;
padding: 10x 15x;
appearance: none;
border: none;
background-color: rgb(8, 243, 216);
margin-top: 15px;
font-size: 20px;
outline: none;
}
.todo-submit{
display: block;
width: 100%;
max-width: 100%;
appearance: none;
border: none;
outline: none;
background: none;
background-color: rgb(10, 22, 245);
color: rgb(186, 233, 241);
margin: 15px auto;
padding: 10px 15px;
font-size: 18px;
font-weight: 700;
}