86 lines
1.4 KiB
CSS

html{
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-size: 0.9em;
}
/* Header */
header{
display: block;
vertical-align: middle;
}
/* Navigation bar */
nav{
background-color: #CCCCFF;
}
nav > ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
nav ul li {
display: inline-block;
padding: 14px 16px;
}
li a{
text-decoration: none;
}
.active{
background-color: white
}
/*Buttons*/
.button{
background-color: #4CAF50;
border: none;
border-radius: 4px;
color: white;
padding: 15px 32px;
text-align: center;
display: inline-box;
}
.button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.btn-group{
position: relative;
left: 25%;
}
.btn-group button {
background-color: #4CAF50; /* Green background */
border: 1px solid green; /* Green border */
color: white; /* White text */
padding: 10px 24px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
width: 50%; /* Set a width if needed */
display: block; /* Make the buttons appear below each other */
}
.btn-group button:not(:last-child) {
border-bottom: none; /* Prevent double borders */
}
/* Add a background color on hover */
.btn-group button:hover {
background-color: #3e8e41;
}
/* logo image class */
.logo {
width: 10%;
}
/* headline for header */
header h1 {
display: inline;
vertical-align: center;
}