Files
2024-12-30 14:16:40 +02:00

43 lines
641 B
CSS

/* style.css */
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
}
h1 {
color: #333;
}
webview {
display: none;
}
.open-webview {
display: block;
}
#tabwebview {
display: block !important;
}
#contextMenu {
color: white;
display: none;
background-color: #000000;
border: 1px solid #ccc;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
padding: 8px 0;
width: 150px;
position: absolute;
z-index: 999999999999999;
}
.context-menu-item {
padding: 8px 16px;
cursor: pointer;
}
.context-menu-item:hover {
background-color: #242424;
}