homepage/src/styles/global.css

29 lines
308 B
CSS

html {
background-color: #0e1e38;
color: #eeeeee;
margin: 0;
height: 100%;
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
position: relative;
margin: 0;
padding-bottom: 6rem;
min-height: 100%;
}
a {
color: green;
}
a:visited {
color: darkorchid;
}