-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
60 lines (56 loc) · 1.14 KB
/
style2.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
body {
background-color: #f8f9fa;
color: #343a40;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
transition: background-color 0.3s, color 0.3s;
}
input{
margin-right: 5px;
}
.todo-container {
display: flex;
justify-content: space-between;
max-width: 600px;
margin: 1rem auto;
padding: 1rem;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
ul> li{
list-style-type: none;
display: flex;
justify-content: space-evenly;
margin-top: 5px;
}
button {
background-color: #007bff;
color: #ffffff;
border: none;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 1rem;
border-bottom: 1px solid #e0e0e0;
}
.theme-toggle {
background: none;
border: none;
cursor: pointer;
font-size: 1rem;
color: #007bff;
transition: color 0.3s;
}
.theme-toggle:hover {
color: #0056b3;
}