Ir para o conteúdo

MediaWiki:Common.css: mudanças entre as edições

De Cine Linux Wiki
Sem resumo de edição
Sem resumo de edição
 
(17 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 20: Linha 20:
.mw-logo-wordmark {
.mw-logo-wordmark {
   font-family: 'Gemunu Libre', sans-serif !important;
   font-family: 'Gemunu Libre', sans-serif !important;
   font-size: 22px;
   color: #4a218f;
  line-height: 17px;
   font-weight: 800;
   font-weight: 800;
   color: #4a218f;
   font-size: 2em;
  display: flex;
}
  flex-direction: row;
 
   align-items: flex-start;
h1, h2, h3, h4, h5, h6 {
   gap: 6px;
   font-family: 'Gemunu Libre', sans-serif !important;
   font-weight: 700!important;
}
}


.cine-logo-text {
.cdx-text-input__input {
   line-height: 1;
   border-radius: 20px 0px 0px 20px;
  font-weight: bold;
  font-size: 1.1em;
}
}


.cine-wiki-right {
.cdx-search-input {
   font-size: 1.5em;
   border-radius: 20px;
  font-weight: 900;
  color: #6b21a8;
  text-transform: uppercase;
  margin-top: 0.1em;
}
}


h1, h2, h3, h4, h5, h6 {
.cdx-search-input__end-button.cdx-button {
  font-family: 'Gemunu Libre', sans-serif !important;
   border-radius: 0px 20px 20px 0px;
   font-weight: 700!important;
}
}
/* FIM GLOBAL */
/* FIM GLOBAL */
Linha 88: Linha 81:
  text-align: center;
  text-align: center;
  padding: 20px 0px;
  padding: 20px 0px;
}
.software-infobox .logo .mw-file-element {
  max-width: 200px!important;
  max-height: 100px!important;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}
}



Edição atual tal como às 18h44min de 2 de julho de 2025

/** o código CSS colocado aqui será aplicado a todos os temas */

:root {
  /* -- Cor principal de destaque (links, botões, abas ativas) -- */
  --color-primary: #602CB9;
  --color-primary-dark: #120B28;
  --color-primary-light: #E8E6F4;
  --color-primary-highlight: 6339D8;

}

/* GLOBAL */

img.mw-logo-icon {
  height: 50px !important;
  width: auto !important;
  max-width: 100% !important;
}

.mw-logo-wordmark {
  font-family: 'Gemunu Libre', sans-serif !important;
  color: #4a218f;
  font-weight: 800;
  font-size: 2em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gemunu Libre', sans-serif !important;
  font-weight: 700!important;
}

.cdx-text-input__input {
  border-radius: 20px 0px 0px 20px;
}

.cdx-search-input {
  border-radius: 20px;
}

.cdx-search-input__end-button.cdx-button {
  border-radius: 0px 20px 20px 0px;
}
/* FIM GLOBAL */

/* SOFTWARE INFOBOX */
.software-infobox {
  float: right;
  margin: 0 0 1em 1em;
  width: 300px;
  border: 2px solid #ccc;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

@media (max-width: 768px) {
  .software-infobox {
    float: none;
    width: 100%;
    margin: 1em 0;
  }
}

.software-infobox .name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 13px;
  background: #E8E6F4;
}

.software-infobox .discontinued {
  background: #fedbd2;
  font-weight: bold;
  text-align: center;
  padding: 20px 0px;
}

.software-infobox .logo{
 text-align: center;
 padding: 20px 0px;
}

.software-infobox .logo .mw-file-element {
  max-width: 200px!important;
  max-height: 100px!important;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}

.software-infobox table {
 padding: 10px 15px;
}

.software-infobox td {
 border-bottom: 1px solid #ddd;
 font-size: 14px;
}

.software-infobox .operating-system p{
 margin: 3px;
}

.software-infobox p:empty {
  display: none;
  margin: 0;
  padding: 0;
}

.software-infobox td.item{
 font-weight: bold;
}

.software-infobox td.item-content {
  word-break: break-word;
}

.software-infobox .stable-version-date {
  font-size: 12px;
  font-style: italic;
}
/* FIM SOFTWARE INFOBOX */


/* GRID CATEGORIAS */
#categories-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5em;
  padding: 0;
  margin: 0;
}

#categories-list li {
  background: var(--color-primary-light);
  padding: 0.5em;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#categories-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

#categories-list li:hover {
   box-shadow: 0 4px 8px rgba(0,0,0,0.05);
   background: var(--color-primary);
}

#categories-list li:hover a{
   color: #fff;
}
/* GRID CATEGORIAS */