-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (74 loc) · 1.48 KB
/
style.css
File metadata and controls
82 lines (74 loc) · 1.48 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@400;900&display=swap');
main {
display: flex;
justify-content: center;
align-content: center;
align-items: center;
height: 100vh;
}
.to-do_list {
width: 26vw;
border: 1px solid #C4C4C4;
border-radius: 10px;
}
.header {
width: inherit;
height: 28px;
background-color: #FFDC40;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
h2 {
font-family: 'Roboto', sans-serif;
font-weight: 900;
text-align: center;
}
.sort {
width: 2vw;
display: block;
margin-left: 22vw;
margin-bottom: 10px;
}
.list-wrapper {
width: 22vw;
border: 1px solid #C4C4C4;
border-radius: 10px;
margin-left: 2vw;
padding: 0;
list-style-type: none;
}
.input-wrapper , .new-input-wrapper {
display: flex;
justify-content: space-around;
align-items: center;
margin-top: 2px;
margin-bottom: 2px;
/* cursor: move; */
}
.do-input , .new-do {
width: 18vw;
height: 35px;
border: none;
border-radius: inherit;
}
.do-input:focus {
border-radius: 10px;
}
.delete-icon , .new-delete{
width: 1.5vw;
height: 1.5vw;
}
.add-btn {
width: 12vw;
margin-left: 7vw;
margin-top: 19px;
margin-bottom: 19px;
}
button {
padding: 0;
border: none;
font: inherit;
color: inherit;
background-color: transparent;
cursor: pointer;
}