-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (122 loc) · 2.43 KB
/
style.css
File metadata and controls
140 lines (122 loc) · 2.43 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
body {
font-family: "Poppins", sans-serif;
background: linear-gradient(135deg, #e0f7fa 0%, #abe4b0 100%);
margin: 0;
padding: 20px;
transition: background 0.3s ease;
}
.container {
max-width: 650px;
margin: auto;
background: #ffffff;
padding: 25px;
border-radius: 16px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
header h1 {
text-align: center;
color: #1e88e5;
margin: 0;
}
header p {
text-align: center;
font-size: 14px;
color: #555;
}
textarea {
width: 100%;
height: 100px;
padding: 12px;
font-size: 16px;
resize: none;
border: none;
border-radius: 12px;
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.08);
margin: 20px 0;
}
button {
background: #1e88e5;
color: white;
border: none;
padding: 10px 18px;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
transition: background 0.3s ease, transform 0.2s ease;
}
button:hover {
background: #1565c0;
transform: scale(1.03);
}
.note {
background: #f9f9f9;
padding: 12px 16px;
border-radius: 10px;
margin: 10px 0;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.note p {
margin: 0 0 10px 0;
}
.delete-btn {
margin-right: 8px;
background: #e53935;
padding: 6px 10px;
font-size: 13px;
border-radius: 6px;
cursor: pointer;
border: none;
color: white;
}
.edit-area {
width: 100%;
padding: 10px;
font-size: 16px;
border-radius: 10px;
margin-bottom: 10px;
border: none;
box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* Dark Mode */
body.dark-mode {
background: linear-gradient(135deg, #232526 0%, #414345 100%);
color: #eee;
}
.container.dark-mode {
background: #1f1f1f;
}
textarea.dark-mode,
.note.dark-mode,
.edit-area.dark-mode {
background: #333;
color: #eee;
}
.delete-btn.dark-mode {
background: #b71c1c;
}
.theme-toggle-group {
position: fixed;
top: 10px;
right: 10px;
display: flex;
gap: 10px;
z-index: 100;
}
.toggle-btn {
background: #1e88e5;
color: white;
border: none;
font-size: 16px;
padding: 10px 22px;
border-radius: 20px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: background 0.3s, color 0.3s, transform 0.2s;
font-weight: 600;
letter-spacing: 1px;
}
body.dark-mode .toggle-btn {
background: #ffb300;
color: #222;
}
/* Remove sun logo, use text only for theme toggle button */