style(links, add, index, info, probe, log, main, styles): update styles and improve layout - refactor button and input styles for consistency across pages - enhance responsive design for better usability on mobile devices - adjust spacing and margins for a cleaner look - unify color scheme and hover effects for links and buttons - remove unused font imports to optimize loading performance

This commit is contained in:
Sergey Krashevich
2026-03-11 02:12:52 +03:00
parent 5fced9a580
commit 27b04ed9d8
8 changed files with 343 additions and 932 deletions
+8 -20
View File
@@ -8,32 +8,20 @@
main > div {
display: flex;
flex-wrap: wrap;
gap: 10px;
gap: 8px;
margin-bottom: 12px;
}
table tbody {
font-size: 13px;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.trace {
color: #585858 !important;
}
.debug {
color: #808080 !important;
}
.info {
color: #0174DF !important;
}
.warn {
color: #FF9966 !important;
}
.error {
color: #DF0101 !important;
}
.trace { color: var(--text-muted) !important; }
.debug { color: var(--text-secondary) !important; }
.info { color: var(--accent) !important; }
.warn { color: var(--yellow) !important; }
.error { color: var(--red) !important; }
</style>
</head>
<body>