mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-03-18 21:54:59 +00:00
32 lines
609 B
CSS
32 lines
609 B
CSS
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-SemiBold.ttf') format('truetype');
|
|
font-weight: 600;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-ExtraBold.ttf') format('truetype');
|
|
font-weight: 800;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-Bold.ttf') format('truetype');
|
|
font-weight: 700;
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('./styles/fonts/Inter-Regular.ttf') format('truetype');
|
|
font-weight: 400;
|
|
}
|
|
|
|
|
|
:root {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
box-sizing: border-box !important;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
} |