-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (99 loc) · 1.97 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
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
* {
padding: 0;
margin: 0;
}
:root {
--primary-color: #008000d7;
--primary-font-family: 'Abril Fatface';
--secondary-font-family: 'lato';
--text-Color: #121314;
--secondaryColor: #FB9B2A;
}
.nav__list {
display: flex;
align-items: center;
justify-content: space-between;
padding: 30px 60px;
font-family: var(--primary-font-family);
font-size: 24px;
font-weight: 600;
color: var(--primary-color);
}
.nav__list-items {
display: flex;
}
.logo {
text-decoration: none;
color: var(--primary-color);
}
.todo__section {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.todo__section--heading {
color: var(--text-Color);
font-size: 24px;
font-weight: 800;
font-family: var(--secondary-font-family);
margin-bottom: 40px;
}
.todo__section--todoItem {
display: flex;
min-width: 300px;
}
.todo__section--todoItem + .todo__section--todoItem {
margin-top: 20px
}
.todo__section--todoItem > div {
display: flex;
align-items: center;
width: 100%;
}
.todo__section--todoItem .todo__text {
display: inline-block;
margin-right: 100px;
margin-left: 10px;
font-family: var(--secondary-font-family);
}
.todo__actions {
padding: 5px 16px;
border-radius: 8px;
color: white;
outline: none;
box-shadow: none;
border: 1px solid transparent;
}
.margin {
margin-bottom: 20px;
}
.edit__btn {
background-color: var(--secondaryColor);
}
.delete__btn {
background-color: greenyellow;
color: black;
}
.form {
display: flex;
flex-direction: column;
margin-top: 100px;
width: 60vh;
}
.form__input {
height: 48px;
border-radius: 8px;
border: 1px solid var(--text-Color);
padding-right: 16px;
padding-left: 16px;
font-size: 16px;
font-weight: 600;
font-family: var(--secondary-font-family);
margin-bottom: 20px;
}
.add__btn {
padding: 10px 16px;
background-color: var(--primary-color);
color: white;
}