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
712 B
CSS
53 lines
712 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.pages {
|
|
margin: 1rem;
|
|
font-family: sans-serif;
|
|
line-height: 2;
|
|
font-size: 1em;
|
|
letter-spacing: 6px;
|
|
word-spacing: 30px;
|
|
}
|
|
|
|
/*SUBPAGES*/
|
|
|
|
a.pages:link {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
a.pages:visited {
|
|
text-decoration: none;
|
|
color: grey;
|
|
}
|
|
|
|
a.pages:hover {
|
|
color: yellow;
|
|
}
|
|
|