Fastwhisper / frontend /src /styles /reset.css
Mbonea's picture
Add F0-F1 frontend and serve static build
5e0e982
Raw
History Blame Contribute Delete
544 Bytes
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body,
#app {
min-height: 100%;
margin: 0;
}
body {
background: var(--bg);
color: var(--text);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
button,
input,
textarea,
select {
font: inherit;
color: inherit;
}
button {
cursor: pointer;
border: none;
background: none;
}
a {
color: var(--accent);
text-decoration: none;
}
:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
img {
max-width: 100%;
}