-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
154 lines (141 loc) · 2.48 KB
/
style.css
File metadata and controls
154 lines (141 loc) · 2.48 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* *{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: cursive;
}
.container {
width: 100%;
min-height: 100vh;
background: linear-gradient(130deg, #cf9aff, #95c0ff );
background-attachment: fixed;
color: white;
padding-top: 4%;
padding-left: 10%;
padding-right: 10%;
}
.container h1 {
display: flex;
align-items: center;
font-size: 35px;
font-weight: 600px;
}
.container h1 img {
width: 60px;
}
.container button img {
width: 25px;
margin-right: 8px;
}
.container button {
display: flex;
align-items: center;
background: linear-gradient(#9418fd,#571094);
color: white;
font-size: 16px;
outline: 0;
border: 0;
border-radius: 40px;
padding: 15px 25px;
margin: 30px 0 20px;
cursor: pointer;
}
.input-box {
position: relative;
width: 100%;
max-width: 500px;
min-height: 150px;
background: white;
color:black;
padding: 10px;
margin: 10px 0;
outline: none;
border-radius: 5px;
}
.input-box img {
width: 25px;
position: absolute;
bottom: 15px;
right: 15px;
cursor: pointer;
} */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: cursive
}
body {
background: linear-gradient(130deg, #cf9aff, #95c0ff);
min-height: 100vh;
color: white;
}
.container {
padding: 40px 10%;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
flex-wrap: wrap;
}
header h1 {
font-size: 36px;
display: flex;
align-items: center;
gap: 10px;
}
header h1 img {
width: 50px;
}
.add-note {
background: linear-gradient(#9418fd, #571094);
color: white;
font-size: 16px;
padding: 12px 24px;
border: none;
border-radius: 30px;
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
}
.add-note img {
width: 20px;
}
.notes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.note-card {
background: white;
border-radius: 10px;
position: relative;
padding: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.note-card textarea {
width: 100%;
height: 150px;
border: none;
outline: none;
resize: none;
font-size: 15px;
color: #333;
font-family: inherit;
background: transparent;
}
.note-card img {
position: absolute;
width: 20px;
bottom: 15px;
right: 15px;
cursor: pointer;
opacity: 0.7;
transition: 0.2s ease;
}
.note-card img:hover {
opacity: 1;
}