mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-19 20:19:05 +00:00
29 lines
707 B
SCSS
29 lines
707 B
SCSS
/*
|
|
Note: These styles are temporary. They will be replaced before going live.
|
|
*/
|
|
|
|
@import './reset.scss';
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
font: 12px/1.3 system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, sans-serif;
|
|
overflow: hidden;
|
|
overscroll-behavior: none;
|
|
contain: strict;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path d="M1 2V0h1v1H0v1z" fill-opacity=".025"/></svg>');
|
|
background-size: 20px 20px;
|
|
}
|
|
|
|
:root {
|
|
--gray-dark: rgba(0,0,0,0.8);
|
|
|
|
--button-fg-color: 95, 180, 228;
|
|
--button-fg: rgb(95, 180, 228);
|
|
|
|
--negative: rgb(207, 113, 127);
|
|
--positive: rgb(149, 212, 159);
|
|
}
|