mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
19 lines
423 B
CSS
19 lines
423 B
CSS
/* Shared base reset and typography – used by list-manager and popup */
|
||
|
||
* {
|
||
box-sizing: border-box;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
|
||
body {
|
||
font-family: var(--font-sans);
|
||
font-size: var(--text-base);
|
||
line-height: var(--leading-normal);
|
||
letter-spacing: var(--tracking-tight);
|
||
background: var(--bg-color);
|
||
color: var(--text-color);
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
}
|