Files
omnivore/packages/web/styles/globals.css
2022-04-12 12:23:08 -07:00

137 lines
2.7 KiB
CSS

html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1.6;
font-size: 18px;
}
.disable-webkit-callout {
-webkit-touch-callout: none;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
div#appleid-signin {
min-width: 300px;
min-height: 40px;
}
@font-face {
font-family: 'Inter';
font-weight: 200;
font-style: normal;
src: url('/static/fonts/Inter/Inter-ExtraLight-200.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 300;
font-style: normal;
src: url('/static/fonts/Inter/Inter-Light-300.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 400;
font-style: normal;
src: url('/static/fonts/Inter/Inter-Regular-400.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 500;
font-style: normal;
src: url('/static/fonts/Inter/Inter-Medium-500.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 600;
font-style: normal;
src: url('/static/fonts/Inter/Inter-SemiBold-600.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 700;
font-style: normal;
src: url('/static/fonts/Inter/Inter-Bold-700.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 800;
font-style: normal;
src: url('/static/fonts/Inter/Inter-ExtraBold-800.ttf');
}
@font-face {
font-family: 'Inter';
font-weight: 900;
font-style: normal;
src: url('/static/fonts/Inter/Inter-Black-900.ttf');
}
@font-face {
font-family: 'SF Mono';
font-weight: 400;
font-style: normal;
src: url('/static/fonts/SFMono/SFMonoRegular.otf');
}
.dropdown-arrow {
display: inline-block;
width: 0;
height: 0;
vertical-align: middle;
border-style: solid;
border-width: 4px 4px 0;
border-right-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
}
.slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 1px;
background: var(--colors-grayBorderHover);
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px !important;
height: 16px;
border-radius: 50%;
background: var(--colors-utilityTextContrast);
cursor: pointer;
}
.slider::-moz-range-thumb {
-webkit-appearance: none;
width: 16px !important;
height: 16px;
border-radius: 50%;
background: var(--colors-utilityTextContrast);
cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
background: var(--colors-grayTextContrast);
}