homepage/src/styles/global.css

40 lines
425 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-17 22:02:49 +00:00
font-family: "Source Sans Pro", 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
}
2019-12-17 22:02:49 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Space Mono";
2019-12-17 22:02:49 +00:00
font-weight: bold;
}