nettsiden/www/css/landing.css

61 lines
711 B
CSS
Raw Normal View History

2017-11-13 13:21:51 +01:00
header {
margin-top: 50px;
padding: 3vh 15vw;
width: 70vw;
2017-11-13 13:21:51 +01:00
background-color: #002244;
color: #fff;
}
2017-11-13 22:01:33 +01:00
header .logo {
2018-02-10 15:04:57 +01:00
display: block;
width: 24vh;
height: 24vh;
2018-02-10 15:04:57 +01:00
margin: auto;
2017-11-13 13:21:51 +01:00
}
main {
margin-top: 0;
}
2017-11-13 14:18:08 +01:00
.info {
2017-11-13 13:21:51 +01:00
text-align: center;
width: 100%;
2018-02-10 15:04:57 +01:00
padding: 0;
margin: 0;
overflow-y: hidden;
2017-11-13 13:21:51 +01:00
}
.essentials {
width: 100%;
2017-11-13 13:21:51 +01:00
margin: 1.8em 0;
2018-02-10 15:04:57 +01:00
padding: 0;
2017-11-13 13:21:51 +01:00
list-style: none;
display: flex;
align-items: center;
2018-02-10 15:04:57 +01:00
justify-content: center;
2017-11-13 13:21:51 +01:00
}
.essentials li {
display: inline-block;
}
.essentials a {
margin: 0 2em;
height: 100%;
}
.essentials .join {
padding: 1em;
font-size: 1.2em;
2017-11-13 14:18:08 +01:00
}
@media(max-width: 600px){
.essentials {
flex-direction: column;
}
.essentials a {
margin: .2em 0;
}
}