-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (75 loc) · 1.45 KB
/
styles.css
File metadata and controls
85 lines (75 loc) · 1.45 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
*{
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
background: var(--bg);
font-family: 'Lato', sans-serif; /* swapped to Lato */
min-height: 100vh;
padding: 24px;
color: #000000;
}
.sticky-notes {
display: flex;
flex-wrap: wrap;
gap: 20px;
max-width: 800px;
}
.note-container {
position: relative;
width: 250px;
height: 250px;
background: linear-gradient(#f9efaf, #f7e98d);
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.note-container:hover {
box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
}
.note-content {
padding: 15px;
height: calc(100% - 40px);
border: none;
outline: none;
}
.note-actions {
position: absolute;
bottom: 10px;
right: 10px;
}
.delete-note {
background-color: #ff6347;
color: #fff;
border: none;
padding: 8px 12px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s ease;
}
.delete-note:hover {
background-color: #d9534f;
}
.create-note {
display: flex;
justify-content: center;
align-items: center;
font: 120px 'Helvetica', sans-serif;
margin: 0 15px;
width: 250px;
height: 250px;
background-color: #fff;
color: #888;
cursor: pointer;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease-in-out;
}
.create-note:hover {
transform: scale(1.05);
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}