77 lines
1.3 KiB
CSS
77 lines
1.3 KiB
CSS
/*Main container*/
|
|
header {
|
|
/*Box alignment*/
|
|
display: flex;
|
|
margin: auto auto 1%;
|
|
/*height: 8vh;*/
|
|
|
|
/*Content alignment*/
|
|
flex-flow: row wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 10px 30px 10px 30px;
|
|
|
|
/*Visual*/
|
|
background-color: #FFFFFF;
|
|
border-bottom: 1px solid #333333;
|
|
}
|
|
|
|
|
|
/*Second level*/
|
|
.logoBox {
|
|
width: 20%;
|
|
height: 100%;
|
|
float: left;
|
|
}
|
|
|
|
.linkBox {
|
|
width: 80%;
|
|
height: 100%;
|
|
float: right;
|
|
flex-flow: nowrap;
|
|
align-items: center;
|
|
}
|
|
|
|
/*Content alignment*/
|
|
.logo {
|
|
height: 100%;
|
|
float: left;
|
|
}
|
|
|
|
.header_link{
|
|
text-align: center;
|
|
line-height: 2;
|
|
|
|
font-family: Montserrat, serif;
|
|
font-style: normal;
|
|
font-size: 18px;
|
|
color: #828282;
|
|
|
|
float: right;
|
|
margin-left: 10%;
|
|
}
|
|
|
|
.loginButton {
|
|
/*Alignment*/
|
|
float: right;
|
|
margin-left: 10%;
|
|
padding: 0.5% 1% 0.5% 1%;
|
|
|
|
/*Button visual*/
|
|
background-color: #007C36;
|
|
border-radius: 15px;
|
|
border: 1px solid;
|
|
cursor: pointer;
|
|
|
|
/*Text visual*/
|
|
color: #ffffff;
|
|
font-family: Montserrat, serif;
|
|
font-size: 18px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/*Link underline fix*/
|
|
a:link { text-decoration: none; }
|
|
a:visited { text-decoration: none; }
|
|
a:hover { text-decoration: none; }
|
|
a:active { text-decoration: none; } |