-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (92 loc) · 1.86 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (92 loc) · 1.86 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
body {
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #e5e1e6 0%, #ebedee 100%);
margin: 0;
padding: 40px 10px;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
.container {
max-width: 375px;
width: 100%;
background: #e6b8f2ee;
border: 2px solid purple;
border-radius: 20px;
padding: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8px);
display: flex;
flex-direction: column;
gap: 16px;
}
.header {
text-align: center;
font-size: 2rem;
color: #5a189a;
font-weight: bold;
}
.top-bar {
display: flex;
justify-content: flex-end;
width: 100%;
margin-bottom: 16px;
}
input[type="text"] {
width: 50%;
padding: 10px 14px;
font-size: 1rem;
border-radius: 10px;
border: 1px solid #ed6bf4;
background-color: #ffffff;
}
textarea {
width: 100%;
padding: 10px 7px;
font-size: 1rem;
border-radius: 10px;
border: 1px solid #f563df;
background-color: #fff;
resize: none;
}
button {
padding: 12px;
width: 100%;
background: linear-gradient(135deg, #9d4edd, #7b2cbf);
color: white;
font-size: 1rem;
font-weight: bold;
border: none;
border-radius: 25px;
cursor: pointer;
transition: 0.3s ease;
}
button:hover {
background: linear-gradient(135deg, #7b2cbf, #5a189a);
}
.note {
background: #fff;
padding: 15px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
margin-bottom: 10px;
}
.note h3 {
margin: 0 0 10px;
color: #5a189a;
font-size: 1.1rem;
}
.note p {
margin-bottom: 12px;
color: #444;
}
.note button {
width: auto;
padding: 6px 12px;
font-size: 0.85rem;
margin-right: 10px;
}
.note button.delete {
background: linear-gradient(135deg, #f06c8b, #ec6363);
}