18 lines
273 B
CSS
18 lines
273 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: "SF Pro Display", sans-serif;
|
|
background-color: #000000;
|
|
background-color: #000000;
|
|
background-image: linear-gradient(
|
|
43deg,
|
|
#000000 29%,
|
|
#454545 75%,
|
|
#000 100%
|
|
);
|
|
}
|