-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
92 lines (78 loc) · 1.44 KB
/
index.css
File metadata and controls
92 lines (78 loc) · 1.44 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
88
89
90
91
92
body{
display: flex;
/* align-items: center; */
flex-direction: column;
align-items: center;
}
header{
padding: 0.16rem;
border-bottom: 1px solid rgb(223, 223, 223);
}
main{
max-width: 480px;
display: flex;
flex-direction: column;
min-height: 70dvh;
margin-top: 0.6325rem;
/* align-self: center;
background-color: red; */
flex-grow: 1;
}
.container{
margin-bottom: 0.6125rem;
}
ul{
margin: 0;
padding: 0;
list-style: none;
}
li{
/* display: flex; */
width: 100%;
/* justify-content: start; */
align-items: start;
border-bottom: 1px solid rgb(214, 214, 214);
background-color: white;
box-shadow: 0 0 3px rgba(153, 153, 153, 0.7);
}
li div{
flex-grow: 1;
margin-right: auto;
padding: 0.325rem;
margin: 1.25rem 0;
/* min-width: 80%; */
}
li div:first-child{
padding: 1.25rem;
}
li.task button{
margin: 0.325rem;
background:none;
border:none;
cursor: pointer;
}
li.task button:hover{
background: rgb(214, 214, 214);
}
.dialog-header{
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.25rem;
}
.dialog-header h4, .dialog-header .container{
margin: 0;
padding: 0 !important;
}
.task-form{
display: flex;
flex-direction: column;
}
.task-form input{
display: block;
padding: 0.325rem;
margin: 0.325rem 0;
}
.task-form button{
padding: 0.325rem;
}