41 lines
576 B
CSS
41 lines
576 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300&display=swap');
|
|
|
|
* { box-sizing: border-box; }
|
|
|
|
body {
|
|
background: #fafafa;
|
|
font-family: sans-serif;
|
|
padding: 20px 50px;
|
|
}
|
|
|
|
.home {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Overpass Mono', monospace;
|
|
}
|
|
|
|
.home-title {
|
|
font-size: 8rem;
|
|
}
|
|
|
|
.eduroam-logo-link {
|
|
float: right;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.eduroam-logo {
|
|
width: 140px;
|
|
height: auto;
|
|
}
|
|
|
|
.per-server {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
font-size: small;
|
|
color: #606060;
|
|
text-align: center;
|
|
}
|