Initial commit — Meridian OS browser desktop demo
This commit is contained in:
51
css/reset.css
Normal file
51
css/reset.css
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user