-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
76 lines (67 loc) · 1.23 KB
/
styles.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
70
71
72
73
74
75
76
body {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
justify-content: center;
align-items: center;
}
.container {
display: flex;
gap: 25px;
width: 80vw;
height: 80vh;
margin: 50px 50px;
padding: 20px 20px;
}
h2{
margin-left: 10px;
margin-right: 10px;
text-transform: uppercase;
}
p{
margin-left: 10px;
margin-right: 10px;
font-size: 12px;
}
.left-pane {
flex: 1;
height: fit-content;
border-style:solid;
border-color: burlywood;
overflow-y: auto;
}
.right-pane {
flex: 1;
height: fit-content;
justify-content: center;
align-items: center;
}
input[type="text"] {
width: auto;
padding: 10px;
border: none;
font-size: 35px;
font-style: oblique;
font-weight: bold;
}
#task-input:focus {
outline: none;
}
.complete{
text-decoration: line-through;
}
div.show-item{
display: flex;
align-items: center;
}
div.items{
display: flex;
justify-content: space-between;
gap: 25px;
border-bottom: 1px solid #ccc;
padding: 6px;
margin:2px 10px;
}
input[type="checkbox"]{
margin-left: 10px;
margin-right: 10px;
padding: 10px;
}