MediaWiki:Common.css: diferenças entre revisões
Aparência
Limpou toda a página Etiqueta: Esvaziamento |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
/* ===== CLASSES / CARDS ===== */ | |||
.classes-wrapper, | |||
.classes-flex { | |||
display: flex; | |||
gap: 12px; | |||
justify-content: space-between; | |||
align-items: flex-start; | |||
min-width: 100%; | |||
padding: 0; | |||
} | |||
.classe-card, | |||
.container { | |||
min-width: 170px; | |||
flex: 1 1 180px; | |||
max-width: 220px; | |||
} | |||
.divider { | |||
border-right: 1px solid #35215f; | |||
margin: 0 4px; | |||
} | |||
.classe-table, | |||
.classe-card table, | |||
.container table { | |||
width: 100%; | |||
margin-top: 0 !important; | |||
margin-bottom: 0 !important; | |||
border-spacing: 0; | |||
border-collapse: separate; | |||
background: #f6ecd6; | |||
border: 1px solid #8e6a3a; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
} | |||
.classe-top, | |||
.classe-card-top { | |||
text-align: center; | |||
font-size: 14px; | |||
color: #f5df9d; | |||
background: linear-gradient(to right, #36040d, #851515, #36040d); | |||
padding: 6px 4px; | |||
vertical-align: middle; | |||
} | |||
.classe-bottom, | |||
.classe-card-bottom { | |||
text-align: center; | |||
font-size: 14px; | |||
color: white; | |||
background: linear-gradient(to right, #36040d, #851515, #36040d); | |||
padding: 6px 4px; | |||
} | |||
.tag-green, | |||
.tag-red, | |||
.tag-yellow, | |||
.tag-blue { | |||
color: #000; | |||
padding: 2px 6px; | |||
border-radius: 4px; | |||
font-weight: bold; | |||
display: inline-block; | |||
} | |||
.tag-green { background-color: #43cc91; } | |||
.tag-red { background-color: #ff8a8a; } | |||
.tag-yellow { background-color: #ffc107; } | |||
.tag-blue { background-color: #42a1c9; } | |||
.classe-card:hover, | |||
.container:hover { | |||
transform: translateY(-2px); | |||
transition: 0.15s ease; | |||
} | |||
Revisão das 11h47min de 27 de março de 2026
/* ===== CLASSES / CARDS ===== */
.classes-wrapper,
.classes-flex {
display: flex;
gap: 12px;
justify-content: space-between;
align-items: flex-start;
min-width: 100%;
padding: 0;
}
.classe-card,
.container {
min-width: 170px;
flex: 1 1 180px;
max-width: 220px;
}
.divider {
border-right: 1px solid #35215f;
margin: 0 4px;
}
.classe-table,
.classe-card table,
.container table {
width: 100%;
margin-top: 0 !important;
margin-bottom: 0 !important;
border-spacing: 0;
border-collapse: separate;
background: #f6ecd6;
border: 1px solid #8e6a3a;
border-radius: 8px;
overflow: hidden;
}
.classe-top,
.classe-card-top {
text-align: center;
font-size: 14px;
color: #f5df9d;
background: linear-gradient(to right, #36040d, #851515, #36040d);
padding: 6px 4px;
vertical-align: middle;
}
.classe-bottom,
.classe-card-bottom {
text-align: center;
font-size: 14px;
color: white;
background: linear-gradient(to right, #36040d, #851515, #36040d);
padding: 6px 4px;
}
.tag-green,
.tag-red,
.tag-yellow,
.tag-blue {
color: #000;
padding: 2px 6px;
border-radius: 4px;
font-weight: bold;
display: inline-block;
}
.tag-green { background-color: #43cc91; }
.tag-red { background-color: #ff8a8a; }
.tag-yellow { background-color: #ffc107; }
.tag-blue { background-color: #42a1c9; }
.classe-card:hover,
.container:hover {
transform: translateY(-2px);
transition: 0.15s ease;
}