forked from ZoeFM/deepseekv9
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
93 lines (81 loc) · 1.6 KB
/
styles.css
File metadata and controls
93 lines (81 loc) · 1.6 KB
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
body {
font-family: Arial, sans-serif;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
}
#task-input {
width: 70%;
padding: 12px;
margin-right: 10px;
border: 2px solid #ddd;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s ease;
}
#task-input:focus {
outline: none;
border-color: #4CAF50;
}
#add-task-btn {
padding: 12px 24px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
#add-task-btn:hover {
background-color: #45a049;
}
#task-list {
list-style-type: none;
padding: 0;
margin-top: 30px;
}
.task-item {
padding: 15px;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
border-radius: 4px;
margin-bottom: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s ease;
}
.task-item:hover {
transform: translateY(-2px);
}
.delete-btn {
background-color: #f44336;
color: white;
border: none;
padding: 8px 16px;
cursor: pointer;
border-radius: 4px;
font-size: 14px;
transition: background-color 0.3s ease;
}
.delete-btn:hover {
background-color: #d32f2f;
}
@media (max-width: 600px) {
#task-input {
width: 100%;
margin-right: 0;
margin-bottom: 10px;
}
#add-task-btn {
width: 100%;
}
}