Padel-Tournaments-System/frontend/_global/header.css

151 lines
2.4 KiB
CSS
Raw Permalink Normal View History

/*Main container*/
header {
/*Box alignment*/
display: flex;
margin: auto;
/*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 black;
}
/*Second level*/
.logoBox {
width: 10.8%;
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%;
}
2022-06-19 13:33:34 +02:00
.header-link {
text-align: center;
line-height: 2;
font-weight: bold;
2022-06-19 13:33:34 +02:00
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;
}
.ladderButtonFunctions {
/*Alignment*/
height: 50%;
float: right;
/*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;
}
.ladderButton {
/*Alignment*/
float: right;
/*Button visual*/
background-color: #007C36;
border-radius: 15px;
border: 1px solid;
cursor: pointer;
/*Text visual*/
color: #ffffff;
font-family: Montserrat, serif;
font-size: 13px;
text-decoration: none;
}
.players-on-ladder {
display: flex;
flex-direction: row;
font-size: 19px;
justify-content: space-around;
padding-bottom: 15px;
padding-right: 10px;
align-items: center;
}
.span-ladder {
display: flex;
justify-content: center;
height: auto;
}