-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (60 loc) · 1.15 KB
/
style.css
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
body {
font-family: sans-serif;
margin: 0 50px;
background-color: #F2DEBA;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.app {
background-color: #fff;
width: 300px;
height: 500px;
border: 5px solid #0E5E6F;
border-radius: 8px;
padding: 15px;
overflow-y: scroll;
}
.app::-webkit-scrollbar {
width: 0 !important;
}
#addNew {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(171, 206, 161, 0.35);
padding: 5px 10px;
border-radius: 5px;
cursor: pointer;
}
.fa-plus {
background-color: #abcea1;
padding: 3px;
border-radius: 3px;
}
#tasks {
display: grid;
grid-template-columns: 1fr;
gap: 1rem;
}
#tasks div {
border: 3px solid #3A8891;
background-color: #c8f9ff;
border-radius: 6px;
padding: 5px;
display: grid;
gap: 4px;
}
#tasks div .options {
display: flex;
justify-content: center;
gap: 20px;
}
#tasks div .options i {
cursor: pointer;
}
#msg {
color: red;
}