homepage/src/styles/global.css

29 lines
308 B
CSS
Raw Normal View History

2019-12-11 21:34:32 +00:00
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%;
}
2019-12-12 00:27:03 +00:00
a {
color: green;
}
a:visited {
color: darkorchid;
}