MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Phoenix-Larp Wiki

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
#footer {
#footer {
    z-index: auto;
z-index: auto;
    height: 120px;
height: 120px;
}
}


.mw-body-content img {
.mw-body-content img {
  max-width: 100%;
max-width: 100%;
  height: auto;
height: auto;
}
}


@media screen and (min-width: 751px){
@media screen and (min-width: 751px) {
    #column-navigation {
#column-navigation {
      width: 13em;
width: 13em;
    }
}
}
}


@media screen and (max-width: 1024px){
@media screen and (max-width: 960px) {
    #page-tools {
#p-search {
      display: flex;
padding: 0 0 0.5rem 0;
      flex-wrap: wrap;
width: 100%;
      line-height: 1.2rem;
display: flex;
    }
position: relative;
top: inherit;
right: inherit;
}


    #p-search {
#searchInput {
padding: 0 0 0.5rem 0;
flex: 15em 1 1;
width: 100%;
}
display: flex;
}
 
#searchInput {
flex: 15em 1 1;
}


#searchGoButton {
#searchGoButton {
flex: 1.5rem 0 0;
flex: 1.5rem 0 0;
margin: 0 10px;
margin: 0 10px;
}
}
}


@media screen and (max-width: 1024px) {
#page-tools {
display: flex;
flex-wrap: wrap;
line-height: 1.2rem;
}
}
}

Version vom 13. März 2023, 21:57 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
#footer {
	z-index: auto;
	height: 120px;
}

.mw-body-content img {
	max-width: 100%;
	height: auto;
}

@media screen and (min-width: 751px) {
	#column-navigation {
		width: 13em;
	}
}

@media screen and (max-width: 960px) {
	#p-search {
		padding: 0 0 0.5rem 0;
		width: 100%;
		display: flex;
		position: relative;
		top: inherit;
		right: inherit;
	}

	#searchInput {
		flex: 15em 1 1;
	}

	#searchGoButton {
		flex: 1.5rem 0 0;
		margin: 0 10px;
	}
}

@media screen and (max-width: 1024px) {
	#page-tools {
		display: flex;
		flex-wrap: wrap;
		line-height: 1.2rem;
	}
}