-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha.css
More file actions
40 lines (37 loc) · 949 Bytes
/
a.css
File metadata and controls
40 lines (37 loc) · 949 Bytes
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
.sidebar {
width: 200px; /* Adjust width as needed */
background-color: goldenrod; /* Background color of sidebar */
padding: 10px;
border-radius: 8px;
}
.box {
background-color: rgb(23, 0, 100); /* Background color of sidebar */
padding: 10px;
border: 1px solid #ccc; /* Border around box */
border-radius: 5px; /* Rounded corners */
border-radius: 8px;
}
.item {
padding: 5px;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
color: lightgreen;
font-weight: 700;
font-size: larger;
border-radius: 8px;
}
.name {
border-radius: 8px;
padding: 5px;
margin-bottom: 7px;
background-color: gray;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
color: white;
font-weight: 700;
}
.item:hover {
background-color: rgba(130, 112, 10, 0.64);
color: white;
border-radius: 11px;
}