-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (97 loc) · 1.62 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.app {
display: grid;
height: 100vh;
overflow: hidden;
grid-template-columns: 200px 1fr;
grid-template-rows: min-content 1fr min-content;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.header {
display: flex;
align-items: center;
padding: 4px 40px;
background-color: bisque;
grid-column: 1 / 3;
font-size: 18px;
}
.header__logo {
display: flex;
align-items: center;
width: 170px;
}
.header__title {
font-size: 16px;
}
.header__navigation {
margin-left: 40px;
}
.header__search {
width: 100%;
min-width: 100px;
max-width: 500px;
margin-left: auto;
}
.accordion {
padding: 10px;
background-color: cadetblue;
}
.footer {
display: flex;
justify-content: space-between;
background-color: bisque;
grid-column: 1 / 3;
padding: 10px 40px;
font-size: 18px;
}
.footer__nagivation {
display: flex;
flex-direction: column;
}
.tags {
list-style: none;
font-size: 18px;
}
.tag {
cursor: pointer;
}
.tag:hover {
color: #606060;
}
.link {
text-decoration: none;
color: inherit;
}
.link:hover {
text-decoration: underline;
}
.content {
padding: 10px;
display: flex;
flex-direction: column;
margin: 0 auto;
width: 50%;
}
.todo-input {
margin-bottom: 10px;
width: 100%;
}
.todos {
list-style: none;
}
.todo {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.item-actions__action {
margin-left: 10px;
padding: 2px;
}
.hide {
display: none;
}