Initial commit — Meridian OS browser desktop demo

This commit is contained in:
2026-04-19 23:18:55 +00:00
commit 8e30dd3597
30 changed files with 6277 additions and 0 deletions

51
css/reset.css Normal file
View File

@@ -0,0 +1,51 @@
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
overflow: hidden;
font-family: var(--font);
font-size: var(--fs);
background: var(--bg-0);
color: var(--text);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
user-select: none;
}
button, input {
font-family: inherit;
user-select: text;
}
button:focus-visible, input:focus-visible, a:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
input::placeholder {
color: var(--text-faint);
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: var(--border-strong);
border-radius: 3px;
}
::selection {
background: var(--accent-dim);
color: var(--text);
}