nettsiden/www/css/style.css

36 lines
537 B
CSS
Raw Normal View History

2017-11-13 13:21:51 +01:00
body {
overflow-y: scroll;
overflow-x: hidden;
2016-08-15 17:43:41 +02:00
}
2017-11-13 13:21:51 +01:00
* {
font-style: -apple-system, 'avenir next', avenir, roboto, noto, ubuntu, 'helvetica neue', helvetica, arial, sans-serif;
2016-08-15 17:43:41 +02:00
}
2017-11-13 13:21:51 +01:00
main {
padding: 1em 15vw;
height: 100vh;
2018-02-10 16:13:18 +01:00
margin-top: 7vh;
2017-11-13 13:21:51 +01:00
background-color: #fff;
}
2017-11-13 13:21:51 +01:00
main h2 {
color: #002244;
}
2017-11-11 22:10:43 +01:00
2017-11-13 13:21:51 +01:00
.btn {
padding: .5em;
border-radius: 4px;
text-decoration: none;
color: #fff;
background-color: #002244;
transition: background-color .2s ease;
2017-11-11 22:10:43 +01:00
}
2017-11-13 13:21:51 +01:00
.btn:hover {
background-color: #00407F;
transition: background-color .2s ease;
}