-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
142 lines (122 loc) · 2.05 KB
/
Copy pathstyle.css
File metadata and controls
142 lines (122 loc) · 2.05 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
body {
margin: 0;
background: #0f0f0f;
font-family: "Segoe UI", sans-serif;
color: white;
overflow: hidden;
}
.app {
display: flex;
flex-direction: column;
height: 100vh;
}
/* Glass */
.glass {
background: rgba(30,30,30,0.6);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.titlebar {
height: 42px;
display: flex;
align-items: center;
padding-left: 10px;
position: relative;
}
.tabs {
display: flex;
align-items: flex-end;
flex: 1;
}
/* 🔥 Chrome Overlap */
.tab {
position: relative;
padding: 8px 35px 8px 20px;
background: rgba(70,70,70,0.7);
border-radius: 14px 14px 0 0;
font-size: 13px;
cursor: pointer;
transition: 0.25s ease;
margin-left: -14px;
z-index: 1;
display: flex;
align-items: center;
}
.tab:first-child {
margin-left: 0;
}
.tab:hover {
background: rgba(100,100,100,0.7);
z-index: 5;
}
.tab.active {
background: #3a3a3a;
z-index: 10;
transform: translateY(-2px);
box-shadow: 0 -4px 20px rgba(0,0,0,0.8);
}
/* ❌ Close Button */
.tab .close-btn {
position: absolute;
right: 8px;
opacity: 0;
font-size: 12px;
transition: 0.2s;
}
.tab:hover .close-btn {
opacity: 1;
}
.tab .close-btn:hover {
color: #ff5f5f;
}
.add-tab {
margin-left: 10px;
padding: 6px 12px;
background: rgba(60,60,60,0.6);
border-radius: 8px;
cursor: pointer;
transition: 0.2s;
}
.add-tab:hover {
background: rgba(80,80,80,0.8);
}
.navbar {
display: flex;
align-items: center;
gap: 8px;
padding: 8px;
}
.navbar button {
background: rgba(60,60,60,0.6);
border: none;
color: white;
padding: 7px 11px;
border-radius: 8px;
cursor: pointer;
}
.navbar button:hover {
background: rgba(90,90,90,0.8);
}
#urlBar {
flex: 1;
background: rgba(60,60,60,0.6);
border: none;
padding: 8px 15px;
border-radius: 20px;
color: white;
outline: none;
}
.content {
flex: 1;
display: flex;
position: relative;
background: #000;
}
webview {
flex: 1;
display: none;
}
webview.active {
display: flex;
}