-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotesmenu.css
100 lines (84 loc) · 1.78 KB
/
notesmenu.css
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
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200&display=swap');
.body-tag {
font-family: Plus Jakarta Sans,sans-serif;
font-weight: 900;
padding: 5px;
}
.header-title {
display: flex;
flex-direction: row;
align-items: center;
gap: 0.7rem;
margin-bottom: 2rem;
}
.back {
margin-top: 18px;
background-color: rgb(253, 244, 255);
color: white;
width: 40px;
border: none;
padding: 3px;
padding-top: 5px;
border-radius: 5px;
cursor: pointer;
visibility: hidden;
}
.search-box {
margin-left: 8rem;
padding: 7px;
border: 1px solid rgb(219, 189, 247);
border-radius: 16px;
width: 20rem;
display: flex;
justify-content: center;
align-items: center;
}
.sub-headings {
display: flex;
flex-direction: column;
padding-left: 2rem;
}
.display-section {
margin-top: 1.5rem;
padding: 1rem;
display: flex;
flex-direction: row;
gap: 6rem;
}
.key-list {
display: flex;
flex-direction: column;
gap: 1rem;
}
.subkeys-list {
display: flex;
flex-direction: column;
gap: 0.6rem;
}
.recent-notes {
color: white;
background-color: rgb(107, 138, 242);
background-image: linear-gradient(rgb(216, 186, 246), rgb(100, 127, 249));
transition: background-image 0.5s ease;
height: 120px;
width: 170px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 17px;
gap: 5px;
cursor: pointer;
transition: background-image .15s;
}
.recent-notes:hover {
background-image: linear-gradient(rgb(216, 186, 246), rgb(65, 98, 245));
}
.recent-box {
background-color: aqua;
}
.recent-list {
display: flex;
flex-direction: column;
gap: 1rem;
}