portal/index.html
2019-04-13 13:04:11 +02:00

56 lines
1.2 KiB
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>47.0 KIF</title>
</head>
<style>
@font-face {
font-family: Montserrat;
src: url('Montserrat-Bold.ttf')
}
body {
font-family: Montserrat, sans-serif;
font-size: 20pt;
max-width: 400px;
margin: auto;
}
body > div {
width: 400px;
}
nav {
margin: -34px 30px 0 30px;
width: 300px;
border: solid 20px rgb(177,225,28);
border-radius: 30px;
}
nav > a {
display: block;
text-decoration: none;
color: rgb(177,225,28);
text-align: center;
border-top: solid 10px rgb(177,225,28);
padding: 10px 0;
}
nav > a:hover {
background-color: rgb(177,225,28);
color: white;
}
nav > a:first-child {
border: none;
}
</style>
<body>
<div>
<img src="Logo.svg">
</div>
<nav>
<a href="anmeldung">Anmeldung</a>
<!-- <a href="#">Teilnehmerliste</a> -->
<a href="wiki">Wiki</a>
<a href="kulturtag">Kulturtag</a>
<a href="cfd">Call for Decoration</a>
<a href="twitter">Twitter</a>
</nav>
</body>
</html>