forked from LaconicNetwork/icns-frontend
31 lines
646 B
TypeScript
31 lines
646 B
TypeScript
import { createGlobalStyle } from "styled-components";
|
|
import color from "./color";
|
|
|
|
export const GlobalStyle = createGlobalStyle`
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
|
|
background-color: ${color.black};
|
|
|
|
font-size: 0.85vw;
|
|
//font-size: 22px;
|
|
|
|
background-size: 5rem 5rem;
|
|
background-position: top left;
|
|
background-repeat: repeat;
|
|
background-image: linear-gradient(
|
|
rgba(51, 51, 51, 1) 0.1rem,
|
|
transparent 0.1rem
|
|
),
|
|
linear-gradient(90deg, rgba(51, 51, 51, 1) 0.1rem, transparent 0.1rem);
|
|
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
`;
|