homepage/src/styles/global.css

30 lines
328 B
CSS
Raw Normal View History

2019-12-11 21:34:32 +00:00
html {
2019-12-12 00:49:00 +00:00
background-color: #193360;
2019-12-11 21:34:32 +00:00
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-14 17:21:46 +00:00
font-family: sans;
2019-12-11 21:34:32 +00:00
}
2019-12-12 00:27:03 +00:00
a {
2019-12-13 11:55:48 +00:00
color: #22bb22;
2019-12-12 00:27:03 +00:00
}
a:visited {
2019-12-13 11:55:48 +00:00
color: #ee66ff;
2019-12-12 00:27:03 +00:00
}