-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (87 loc) · 2.13 KB
/
styles.css
File metadata and controls
99 lines (87 loc) · 2.13 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
94
95
96
97
98
99
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #2c3e50;
margin: 0;
overflow: hidden;
position: relative;
}
#background-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: linear-gradient(135deg, #ff7e5f, #feb47b);
}
.todo-container {
max-width: 600px;
margin: 50px auto;
background: rgba(255, 255, 255, 0.9);
padding: 20px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
h1 {
font-size: 2rem;
font-weight: bold;
color: #2c3e50;
}
.input-group {
margin-bottom: 20px;
}
.list-group-item {
display: flex;
justify-content: space-between;
align-items: center;
background: #ecf0f1;
border: none;
margin-bottom: 10px;
border-radius: 10px;
padding: 10px 15px;
color: #2c3e50;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.list-group-item:hover {
transform: translateY(-2px);
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.todo-text {
flex-grow: 1;
margin-right: 10px;
}
.todo-time {
font-size: 0.9rem;
color: #7f8c8d;
margin-right: 10px;
}
.btn-group button {
margin-left: 5px;
}
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
z-index: 1000;
}
.popup-content {
background: #ffffff;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
animation: popupFadeIn 0.3s ease;
}
@keyframes popupFadeIn {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}