forked from online-marathon/javascript-fundamental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (95 loc) · 1.82 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
body {
background-color: rgb(99, 182, 99);
padding: 0;
margin: 0;
}
.container {
width: 1110px;
margin: auto;
}
header {
padding: 30px;
text-align: center;
font-size: 40px;
font-family: 'Montserrat', sans-serif;
border-bottom: 2px solid #000;
}
.options {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 50px;
}
#list, option {
border-radius: 15px;
padding: 10px;
width: 150px;
}
#listname, .btn-submit, #to-do-items, .deleteBtn {
border: 1px solid grey;
padding: 10px;
border-radius: 30px;
width: 300px;
font-family: 'Montserrat', sans-serif;
}
.deleteBtn {
width: auto;
padding: 10px 20px;
transition: all 0.5s ease;
}
.deleteBtn:hover,
.btn-delete-items:hover {
background-color: rgb(230, 106, 106);
}
.btn-submit {
width: auto;
transition: all 0.5s ease;
}
.btn-submit:hover {
background-color: rgb(7, 247, 7);
}
.items-to-do {
margin: 150px auto 0;
max-width: 500px;
}
#duties-title {
font-family: 'Ubuntu', sans-serif;
font-size: 35px;
text-align: center;
}
.btn-submit-items, .btn-delete-items {
height: 38px;
width: 38px;
border-radius: 30px;
border: none;
transition: all 0.5s ease;
}
.btn-submit-items {
margin-left: 10px;
}
.btn-delete-items {
width: auto;
margin-left: 30px;
font-weight: 900;
margin-left: auto;
}
.btn-submit-items:hover {
background-color: rgb(7, 247, 7);
}
.style-of-list-item {
font-size: 20px;
font-family: 'Ubuntu', sans-serif;
display: flex;
align-items: center;
}
.items-to-do__input {
display: flex;
justify-content: center;
margin-bottom: 50px;
}
.done {
font-size: 20px;
font-weight: 500;
font-family: 'Montserrat', sans-serif;
display: block;
}