-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (73 loc) · 1.19 KB
/
style.css
File metadata and controls
88 lines (73 loc) · 1.19 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
body {
font-family: "Inter", sans-serif;
margin: 0;
}
header {
padding: 0.5rem 2.5rem;
background: #7749F8;
color: white;
}
main {
padding: 3rem 2.5rem 0;
display: flex;
gap: 2rem;
}
form {
display: flex;
flex-direction: column;
gap: 0.5rem;
width: 15rem;
}
form *:not(button) {
font: inherit;
padding: 0.5rem 0.75rem;
}
form textarea {
resize: none;
}
.todo__add {
padding: 0.5rem 0.75rem;
max-width: fit-content;
background: #7749F8;
color: white;
border-radius: 0.25rem;
border: none;
font-weight: bold;
}
.column-container {
flex: 1;
}
.column-container h2{
margin: 0;
}
.card-column {
border: 1px solid #DEE2E6;
height: 70vh;
padding: 0;
list-style: none;
}
.todo__item {
background: #FFFFFF;
border: 0.1rem solid #DEE2E6;
padding: 0.5rem 1rem;
}
.todo__item * {
margin: 0.5rem 0;
}
.todo__item > * {
pointer-events: none;
}
.arrow-btn {
background-color: transparent;
cursor: pointer;
align-self: center;
border-width: 1px;
}
.selected {
color: #FFFFFF;
background: #7749F8;
}
.done .todo__item {
color: black;
background: #28a745;
}