-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
170 lines (152 loc) · 3.71 KB
/
style.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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:[email protected]&display=swap');
html {
height: 100%;
width: 100%;
}
nav top {
position: fixed;
background: black;
top: env(titlebar-area-y, 0);
left: env(titlebar-area-x, 0);
width: env(titlebar-area-width, 100%);
height: env(titlebar-area-height, 33px);
app-region: drag;
display: flex;
align-items: center;
}
nav top #tabtop {
height: 100%;
display: flex;
align-items: center;
overflow: scroll;
}
nav top #tabtop::-webkit-scrollbar {
display: none;
}
/* Hiding scrollbar for IE, Edge and Firefox */
nav top #tabtop {
scrollbar-width: none;
/* Firefox */
-ms-overflow-style: none;
/* IE and Edge */
}
nav top #tabtop button {
app-region: no-drag;
white-space: nowrap;
border: none;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
height: -moz-available;
color: white;
height: -webkit-fill-available;
height: fill-available;
font-family: "Comfortaa", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
display: flex;
font-size: 1.1rem;
background: #575757;
align-items: center;
justify-content: center;
}
nav bottom {
display: flex;
position: fixed;
background: #575757;
left: env(titlebar-area-x, 0);
top: env(titlebar-area-height, 33px);
width: 100vw;
height: env(titlebar-area-height, 33px);
align-content: center;
flex-wrap: nowrap;
align-items: center;
justify-content: flex-start;
flex-direction: row;
}
nav bottom [class^="icon-"] {
color: white;
font-size: 1.5em;
cursor: pointer;
}
nav bottom [class^="icon-"]:before {
margin: 4.5px;
}
nav .tab {
/* only for the pwa */
-webkit-app-region: no-drag;
app-region: no-drag;
}
nav top .UIplus {
-webkit-app-region: no-drag;
app-region: no-drag;
display: block;
margin-top: 22px;
color: white;
line-height: 0;
font-size: 25px;
display: block;
width: 24.99px;
height: 24.43px;
}
nav top #tabtop .tabclose {
font-size: 25px;
}
#searchbar {
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
font-family: "Comfortaa", sans-serif;
font-optical-sizing: auto;
font-weight: 600;
font-style: normal;
border: none;
border-radius: 100px;
background: #383838;
padding: 3px;
font-size: 17px;
margin: 3px;
color: lightgray;
top: -4px;
}
#searchbar:focus {
outline: 3px solid #5858fe;
padding: 2px;
padding-left: 3px !important;
}
gome {
position: fixed;
height: 100%;
left: 0;
width: 100%;
top: calc(env(titlebar-area-height, 33px) + env(titlebar-area-height, 33px));
display: block;
}
gome iframe {
display:none;
position: fixed;
visibility: hidden;
top: calc(env(titlebar-area-height, 33px) + env(titlebar-area-height, 33px));
border: none;
height: 100%;
width: 100%;
}
gome .hidden {
display:block;
overflow: scroll;
position: fixed;
visibility: visible;
top: calc(env(titlebar-area-height, 33px) + env(titlebar-area-height, 33px));
border: none;
height: calc(100vh - (env(titlebar-area-height, 33px) + env(titlebar-area-height, 33px)));
width: 100%;
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}