You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
688 B
CSS

/* STARTPAGE */
/* default to border-box */
html {
box-sizing: border-box;
font-size: 16px;
}
*, *:before, *:after {
box-sizing: inherit;
}
/* adjust typography defaults */
body {
margin: 1rem;
font-family: sans-serif;
line-height: 2;
font-size: 2em;
letter-spacing: 6px;
word-spacing: 40px;
}
img{
vertical-align: middle;
height: auto;
width: 10%;
}
a {
margin: 1rem;
font-family: sans-serif;
line-height: 2;
font-size: 1em;
letter-spacing: 6px;
word-spacing: 30px;
}
/*SUBPAGES*/
a:link {
text-decoration: none;
color: black;
}
a:visited {
text-decoration: none;
color: grey;
}
a:hover {
color: yellow;
}