Files
cwsvJudo/homepage/redesign2018/markdownExperiment/css/cwsvJudo-2018-header.css
2018-06-25 20:09:57 +02:00

56 lines
1.1 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 > amp-img:first-of-type,
.cwsvHeader > img:first-of-type{
display: none;
}
.cwsvHeader amp-img,
.cwsvHeader img{
width: auto;
height: 3em;
}
.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 > amp-img:first-of-type,
.cwsvHeader > img:first-of-type{
display: initial;
}
}