make ui bigger

This commit is contained in:
2026-01-16 14:52:18 +01:00
parent 2e2a9d0603
commit fbb6917812
23 changed files with 1252 additions and 1623 deletions

View File

@@ -23,15 +23,15 @@
}
.browser-nav-btn {
width: 40px;
height: 40px;
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-size: 24px;
color: #B3B3B3;
cursor: pointer;
border-radius: 20px;
border-radius: 28px;
}
.browser-nav-btn:hover {
@@ -57,14 +57,14 @@
}
.browser-secure-icon {
font-size: 14px;
font-size: 18px;
color: #4CAF50;
margin-right: 8px;
}
.browser-url {
flex: 1;
font-size: 14px;
font-size: 18px;
color: #FFFFFF;
background: transparent;
border: none;
@@ -89,7 +89,7 @@
}
.browser-page-text {
font-size: 14px;
font-size: 18px;
line-height: 1.6;
color: #333333;
margin-bottom: 16px;
@@ -124,13 +124,13 @@
}
.browser-search-url {
font-size: 13px;
font-size: 16px;
color: #006621;
margin-bottom: 4px;
}
.browser-search-desc {
font-size: 14px;
font-size: 18px;
color: #545454;
line-height: 1.4;
}
@@ -163,14 +163,14 @@
}
.browser-tab-label {
font-size: 11px;
font-size: 16px;
}
.browser-tabs-indicator {
padding: 4px 8px;
padding: 6px 10px;
border: 1px solid #B3B3B3;
border-radius: 4px;
font-size: 12px;
border-radius: 6px;
font-size: 16px;
color: #B3B3B3;
}
</style>
@@ -189,20 +189,20 @@
<!-- Browser Toolbar -->
<div class="browser-toolbar">
<div class="app-bar-nav browser-nav-btn" data-class-disabled="!can_go_back" onclick="goBack()">
<img src="../../icons/back.tga" style="width: 24px; height: 24px;"/>
<img src="../../icons/back.tga" style="width: 32px; height: 32px;"/>
</div>
<div class="browser-nav-btn disabled">
<img src="../../icons/forward.tga" style="width: 24px; height: 24px; opacity: 0.3;"/>
<img src="../../icons/forward.tga" style="width: 32px; height: 32px; opacity: 0.3;"/>
</div>
<div class="browser-url-bar">
<span class="browser-secure-icon">🔒</span>
<input class="browser-url" type="text" data-value="current_url"/>
</div>
<div class="browser-nav-btn" data-event-click="refresh()">
<img src="../../icons/refresh.tga" style="width: 24px; height: 24px;"/>
<img src="../../icons/refresh.tga" style="width: 32px; height: 32px;"/>
</div>
<div class="browser-nav-btn">
<img src="../../icons/more.tga" style="width: 24px; height: 24px;"/>
<img src="../../icons/more.tga" style="width: 32px; height: 32px;"/>
</div>
</div>
@@ -236,7 +236,7 @@
<!-- Bottom Bar -->
<div class="browser-bottom-bar">
<div class="browser-tab-btn" onclick="goHome()">
<img src="../../icons/home.tga" class="browser-tab-icon" style="width: 24px; height: 24px;"/>
<img src="../../icons/home.tga" class="browser-tab-icon" style="width: 32px; height: 32px;"/>
<span class="browser-tab-label">Home</span>
</div>
<div class="browser-tab-btn">
@@ -244,11 +244,11 @@
<span class="browser-tab-label">Tabs</span>
</div>
<div class="browser-tab-btn">
<img src="../../icons/add.tga" class="browser-tab-icon" style="width: 24px; height: 24px;"/>
<img src="../../icons/add.tga" class="browser-tab-icon" style="width: 32px; height: 32px;"/>
<span class="browser-tab-label">New Tab</span>
</div>
<div class="browser-tab-btn">
<img src="../../icons/menu.tga" class="browser-tab-icon" style="width: 24px; height: 24px;"/>
<img src="../../icons/menu.tga" class="browser-tab-icon" style="width: 32px; height: 32px;"/>
<span class="browser-tab-label">Menu</span>
</div>
</div>