-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (67 loc) · 1.95 KB
/
style.css
File metadata and controls
67 lines (67 loc) · 1.95 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
body { font-family: 'Inter', sans-serif; margin: 0; overflow-x: hidden; }
#visualisierungsLeinwand { display: block; width: 100%; background-color: #f0f0f0; }
input[type="number"], input[type="text"], input[type="color"], select, input[type="checkbox"] {
border-radius: 0.375rem;
border: 1px solid #D1D5DB;
padding: 0.25rem 0.5rem;
box-sizing: border-box;
}
input[type="checkbox"] { padding: 0.25rem; }
button { transition: background-color 0.3s ease; }
.listenContainer::-webkit-scrollbar { width: 6px; }
.listenContainer::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.listenContainer::-webkit-scrollbar-thumb { background: #888; border-radius: 10px; }
.listenContainer::-webkit-scrollbar-thumb:hover { background: #555; }
#nachrichtenBoxContainer .nachrichtenElement { transition: opacity 0.3s ease-in-out; }
.abmessungsEingaben div { margin-bottom: 0.25rem; }
.innenvolumenOptionen {
padding: 0.5rem;
margin-top: 0.25rem;
background-color: #f9fafb; /* bg-gray-50 */
border: 1px solid #e5e7eb; /* border-gray-200 */
border-radius: 0.375rem; /* rounded-md */
}
/* Additional compact layout styles */
details summary::-webkit-details-marker {
display: none;
}
details summary::before {
content: '►';
margin-right: 5px;
font-size: 10px;
}
details[open] summary::before {
content: '▼';
}
/* Hide scrollbars in the main body but still allow scrolling if needed */
html {
scrollbar-width: none;
}
html::-webkit-scrollbar {
display: none;
}
.container {
height: 100vh;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
overflow-y: auto;
}
@media (max-height: 768px) {
.text-lg {
font-size: 0.9rem;
}
.text-sm {
font-size: 0.75rem;
}
.text-xs {
font-size: 0.65rem;
}
#visualisierungsLeinwand {
height: calc(100vh - 300px);
}
}
@media (min-height: 769px) {
#visualisierungsLeinwand {
height: calc(100vh - 250px);
}
}