MediaWiki:Common.css: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
/* ============================= */ | |||
/* WIKI NETNEWS - ESTILO NOC */ | |||
/* ============================= */ | |||
body { | |||
font-family: 'Segoe UI', Arial, sans-serif; | |||
} | |||
/* HERO */ | |||
.hero { | |||
background: linear-gradient(90deg, #1e3c72, #2a5298); | |||
padding: 70px 40px; | |||
color: white; | |||
border-radius: 20px; | |||
text-align: center; | |||
margin-bottom: 50px; | |||
} | |||
.hero h1 { | |||
font-size: 40px; | |||
margin-bottom: 10px; | |||
font-weight: 600; | |||
} | |||
.hero p { | |||
font-size: 18px; | |||
opacity: 0.9; | |||
} | |||
/* PAINEL NOC */ | |||
.noc-panel { | |||
background: #0f172a; | |||
padding: 40px; | |||
border-radius: 22px; | |||
color: white; | |||
margin-bottom: 60px; | |||
} | |||
.noc-title { | |||
font-size: 24px; | |||
margin-bottom: 30px; | |||
font-weight: 600; | |||
} | |||
.noc-grid { | |||
display: grid; | |||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); | |||
gap: 25px; | |||
} | |||
.server-box { | |||
background: #1e293b; | |||
padding: 22px; | |||
border-radius: 16px; | |||
display: flex; | |||
justify-content: space-between; | |||
align-items: center; | |||
transition: all 0.3s ease; | |||
color: white !important; | |||
} | |||
.server-box:hover { | |||
background: #334155; | |||
transform: translateY(-4px); | |||
} | |||
.server-name { | |||
font-weight: 600; | |||
} | } | ||
/* STATUS */ | |||
.blink { | |||
animation: blink 1s infinite; | |||
} | } | ||
@keyframes blink { | |||
0% { opacity: 1; } | |||
50% { opacity: 0.3; } | |||
100% { opacity: 1; } | |||
} | } | ||
Edição das 17h26min de 18 de fevereiro de 2026
/* ============================= */
/* WIKI NETNEWS - ESTILO NOC */
/* ============================= */
body {
font-family: 'Segoe UI', Arial, sans-serif;
}
/* HERO */
.hero {
background: linear-gradient(90deg, #1e3c72, #2a5298);
padding: 70px 40px;
color: white;
border-radius: 20px;
text-align: center;
margin-bottom: 50px;
}
.hero h1 {
font-size: 40px;
margin-bottom: 10px;
font-weight: 600;
}
.hero p {
font-size: 18px;
opacity: 0.9;
}
/* PAINEL NOC */
.noc-panel {
background: #0f172a;
padding: 40px;
border-radius: 22px;
color: white;
margin-bottom: 60px;
}
.noc-title {
font-size: 24px;
margin-bottom: 30px;
font-weight: 600;
}
.noc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
}
.server-box {
background: #1e293b;
padding: 22px;
border-radius: 16px;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
color: white !important;
}
.server-box:hover {
background: #334155;
transform: translateY(-4px);
}
.server-name {
font-weight: 600;
}
/* STATUS */
.blink {
animation: blink 1s infinite;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0.3; }
100% { opacity: 1; }
}