-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (40 loc) · 906 Bytes
/
styles.css
File metadata and controls
55 lines (40 loc) · 906 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#fake-taskbar {
position: fixed;
top: 0;
left: 0;
width: 100vw; /* Full width restored */
height: 70px; /* 18% less height from 86px */
background: rgba(245, 245, 245, 0.98); /* Semi-opaque */
z-index: 2147483647;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 12px;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
font-family: sans-serif;
pointer-events: auto;
transition: transform 0.3s ease;
}
#fake-taskbar.hidden-taskbar {
transform: translateY(-100%);
}
.nav-btn, .exit-btn {
margin: 0 4px;
padding: 8px 12px; /* Slightly reduced to fit new height */
border-radius: 6px;
border: none;
cursor: pointer;
font-size: 14px;
}
.nav-btn {
background: white;
border: 1px solid #ccc;
}
.exit-btn {
background: #e74c3c;
color: white;
}
.taskbar-left, .taskbar-right {
display: flex;
align-items: center;
}