Mudanças entre as edições de "MediaWiki:Common.css"

De FNS
Ir para: navegação, pesquisa
Linha 29: Linha 29:
 
}
 
}
  
.mw-parser-output .mainpage_box {
+
.wrapper{
    flex: 1;
+
  min-height: 100vh;
    margin: 5px;
+
  background: #ccc;
    min-width: 210px;
+
  display: flex;
    border: 1px solid #CCC;
+
  flex-direction: column;
    padding: 0 10px 10px 10px;
+
}
    box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
+
.header, .footer{
 +
  height: 50px;
 +
  background: #666;
 +
  color: #fff;
 +
}
 +
.content {
 +
  display: flex;
 +
  flex: 1;
 +
  background: #999;
 +
  color: #000;
 +
}
 +
.columns{
 +
  display: flex;
 +
  flex:1;
 +
}
 +
.main{
 +
  flex: 1;
 +
  order: 2;
 +
  background: #eee;
 +
}
 +
.sidebar-first{
 +
  width: 20%;
 +
  background: #ccc;
 +
  order: 1;
 +
}
 +
.sidebar-second{
 +
  width: 20%;
 +
  order: 3;
 +
  background: #ddd;
 
}
 
}

Edição das 14h23min 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: #ccc;
  display: flex;
  flex-direction: column;
}
.header, .footer{
  height: 50px;
  background: #666;
  color: #fff;
}
.content {
  display: flex;
  flex: 1;
  background: #999;
  color: #000; 
}
.columns{
  display: flex;
  flex:1;
}
.main{
  flex: 1;
  order: 2;
  background: #eee;
}
.sidebar-first{
  width: 20%;
  background: #ccc;
  order: 1;
}
.sidebar-second{ 
  width: 20%;
  order: 3;
  background: #ddd;
}