-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.css
63 lines (57 loc) · 1.08 KB
/
content.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
.leetcode-friend-tracker-btn {
display: flex;
align-items: center;
gap: 6px;
background: transparent;
color: inherit;
border: none;
padding: 8px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.2s;
}
.leetcode-friend-tracker-btn:hover {
background-color: rgba(255, 161, 22, 0.1);
color: #ffa116;
}
.leetcode-friend-tracker-btn svg {
color: inherit;
}
/* Dashboard Panel */
.leetcode-friend-dashboard {
position: fixed;
top: 0;
right: 0;
width: 800px;
height: 100vh;
background-color: #1a1a1a;
border-left: 1px solid #444;
z-index: 1000;
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
display: none;
}
.dashboard-content {
width: 100%;
height: 100%;
padding: 16px;
overflow-y: auto;
box-sizing: border-box;
}
.dashboard-close-btn {
position: absolute;
top: 10px;
right: 10px;
width: 28px;
height: 28px;
border-radius: 50%;
background-color: #444;
color: #fff;
border: none;
font-size: 20px;
cursor: pointer;
z-index: 1001;
}
.dashboard-close-btn:hover {
background-color: #666;
}