-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (80 loc) · 1.46 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
*{
font-family: 'Russo One';
}
body{
font-family: 'Russo One';
background-image: linear-gradient(100deg, #575656, #062e3f);
color: #585858;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #ffffffa3;
box-shadow: 0px 0px 10px #0000004d,2px 10px 10px #a56565;
}
h1 {
font-size: 50px;
margin-bottom: 20px;
text-align: center;
text-decoration-line: underline;
text-shadow: 2px 2px #ff0000;
}
form {
display: flex;
margin-bottom: 20px;
}
input[type="text"] {
flex: 1;
padding: 10px;
border: none;
border-radius: 4px;
font-size: 16px;
}
button[type="submit"] {
padding: 10px;
background-color: #008CBA;
color: #fff;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
.todo-list {
list-style: none;
padding: 0;
}
.todo-list li {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
padding: 10px;
border-radius: 4px;
background-color: #fff;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.todo-list li .todo-text {
flex: 1;
margin-right: 10px;
font-size: 16px;
}
.button-container {
display: flex;
}
.edit-button, .delete-button {
padding: 5px 10px;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
.edit-button {
background-color: #F9A602;
color: #fff;
margin-right: 10px;
}
.delete-button {
background-color: #ff0000;
color: #fff;
}