Mudanças entre as edições de "MediaWiki:Common.css"
De FNS
| Linha 31: | Linha 31: | ||
.wrapper{ | .wrapper{ | ||
min-height: 100vh; | min-height: 100vh; | ||
| − | background: | + | background: orange; |
display: flex; | display: flex; | ||
flex-direction: column; | flex-direction: column; | ||
| Linha 57: | Linha 57: | ||
.sidebar-first{ | .sidebar-first{ | ||
width: 20%; | width: 20%; | ||
| − | background: | + | background: brown; |
order: 1; | order: 1; | ||
} | } | ||
Edição das 14h25min de 30 de maio de 2022
#mw-head{
background: #68ACE3;
color: #fff;
}
#mw-body{
background: #3D87C4
}
@import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif ');
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
body {
font-family: "Noto Sans", sans-serif;
}
/* Changes the default font used for MediaWiki headings to Noto Serif: */
#content h1,
#content h2 {
font-family: "Noto Serif", serif;
}
.wrapper{
min-height: 100vh;
background: orange;
display: flex;
flex-direction: column;
}
.header, .footer{
height: 50px;
background: blue;
color: #fff;
}
.content {
display: flex;
flex: 1;
background: green;
color: #000;
}
.columns{
display: flex;
flex:1;
}
.main{
flex: 1;
order: 2;
background: yelow;
}
.sidebar-first{
width: 20%;
background: brown;
order: 1;
}
.sidebar-second{
width: 20%;
order: 3;
background: red;
}