53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
/*
|
|
* Die Headerleiste
|
|
*/
|
|
|
|
.cwsvHeader{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
font-family: "Orbitron-Medium", Impact, Charcoal, sans-serif;
|
|
font-size: 1.5em;
|
|
/* align-items: stretch;*/
|
|
align-items: center;
|
|
text-align: center;
|
|
background-color: #FF8100;
|
|
}
|
|
|
|
.cwsvHeader img:first-of-type{
|
|
display: none;
|
|
}
|
|
.cwsvHeader img{
|
|
width: auto;
|
|
height: 3em;
|
|
/* height: 100%;*/
|
|
}
|
|
|
|
.cwsvHeader em{
|
|
font-family: "Orbitron-Medium", Impact, Charcoal, sans-serif;
|
|
padding-top: .2em;/* wg. Orbitron */
|
|
}
|
|
|
|
|
|
/* \0000a0 ist unicode für
|
|
* \00202F ist unicode für  */
|
|
.cwsvHeader > span:first-of-type::before{
|
|
content: 'CWSV\0000a0e.\00202FV. - ';
|
|
}
|
|
@media (min-width: 640px){
|
|
.cwsvHeader > span:first-of-type::before{
|
|
content: 'Chemnitzer WSV\0000a0e.\00202FV. - ';
|
|
}
|
|
}
|
|
@media (min-width: 1280px){
|
|
.cwsvHeader > span:first-of-type::before{
|
|
content: 'Chemnitzer Freizeit- und Wohngebietssportverein\0000a0e.\00202FV. - ';
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1280px){
|
|
.cwsvHeader img:first-of-type{
|
|
display: initial;
|
|
}
|
|
}
|