14 lines
397 B
CSS
14 lines
397 B
CSS
body {
|
|
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;
|
|
background-color: #1f2c38;
|
|
text-shadow: 0px 1px 1px #1f2c38;
|
|
}
|
|
|
|
*::selection {
|
|
background-color: rgba(115, 192, 255, 0.9);
|
|
} |