-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (92 loc) · 1.73 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
*,
*::after,
*::before {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-size: 20px;
color: black;
background: rgb(170, 167, 167);
}
.wrapper {
max-width: 1140px;
height: auto;
margin: 50px auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.form {
max-width: 500px;
padding: 20px 10px;
margin-bottom: 50px;
background: rgb(179, 239, 245);
border-radius: 10px;
border: 1px solid gray;
}
.input-todo {
display: inline-block;
padding: 8px 10px;
margin: 0 auto;
width: 400px;
height: 50px;
justify-content: center;
border-radius: 10px;
border: 1px solid black;
font-size: 20px;
}
.btn {
width: 400px;
height: 50px;
display: inline-block;
padding: 10px;
margin-top: 30px;
margin-bottom: 20px;
border-radius: 10px;
background-color: #6ab89a;
border: 1px solid black;
font-size: 25px;
font-weight: bold;
cursor: pointer;
transition: 1s;
}
.btn:hover {
background-color: #127c80;
transition: 1s;
}
.label-todo {
display: inline-block;
margin-bottom: 25px;
font-size: 35px;
font-weight: bold;
}
.mytodolist {
margin-bottom: 25px;
font-size: 35px;
}
.todo-list {
width: 500px;
height: 50px;
text-align: center;
border: 1px solid rgb(32, 32, 32);
border-radius: 10px;
/* padding: 10px 20px; */
font-size: 20px;
}
.todo-item {
width: 500px;
height: 50px;
margin: 0 auto;
padding: 10px 20px;
text-align: center;
font-size: 20px;
background-color: #1a8d24;
border-radius: 10px;
}
.todo-item + .todo-item {
margin-top: 20px;
}