Menú alternativo
Toggle preferences menu
Menú alternativo personal
No ha accedido
Tu dirección IP será visible si haces alguna edición

Publicidad:

Patrocinador Top

Diferencia entre revisiones de «MediaWiki:Common.css»

Página de la interfaz de MediaWiki
Sin resumen de edición
Etiqueta: Revertido
Sin resumen de edición
Etiqueta: Revertido
Línea 267: Línea 267:
/* ===== ESTILOS PARA SOCIAL PROFILE ===== */
/* ===== ESTILOS PARA SOCIAL PROFILE ===== */


/* Contenedor principal del perfil */
/* ===== ESTRUCTURA PRINCIPAL ===== */
.user-profile-container {
.user-profile-container {
     max-width: 1200px;
     max-width: 1200px;
     margin: 0 auto;
     margin: 20px auto;
     padding: 20px;
     padding: 25px;
     background-color: #fff;
     background: #fff;
     border-radius: 8px;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     box-shadow: 0 2px 15px rgba(0,0,0,0.1);
     margin-top: 20px;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
}


/* Cabecera del perfil */
/* ===== CABECERA ===== */
.user-profile-header {
.user-profile-header {
     display: flex;
     display: flex;
     flex-wrap: wrap;
     flex-wrap: wrap;
     gap: 20px;
     gap: 30px;
     margin-bottom: 30px;
     margin-bottom: 30px;
     padding-bottom: 20px;
     padding-bottom: 20px;
     border-bottom: 1px solid #e0e0e0;
     border-bottom: 1px solid #eaeaea;
}
}


/* Avatar del usuario */
.user-avatar-section {
.user-profile-avatar {
    display: flex;
     width: 150px;
    flex-direction: column;
     height: 150px;
    align-items: center;
    gap: 10px;
}
 
.user-avatar {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     border-radius: 50%;
     object-fit: cover;
     object-fit: cover;
     border: 4px solid #3498db;
     border: 4px solid #3498db;
     box-shadow: 0 3px 6px rgba(0,0,0,0.16);
     box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}
 
/* Información básica del usuario */
.user-profile-info {
    flex: 1;
    min-width: 250px;
}
 
.user-profile-name {
    font-size: 2em;
    color: #2c3e50;
    margin: 0 0 10px 0;
}
 
.user-profile-title {
    font-size: 1.2em;
    color: #7f8c8d;
    margin: 0 0 15px 0;
}
 
/* Estadísticas del usuario */
.user-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
 
.user-stat-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}
 
.user-stat-box:hover {
    background-color: #edf3f8;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
}


.user-stat-value {
.user-level {
     font-size: 1.8em;
     background: #f1c40f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
     font-weight: bold;
     font-weight: bold;
    color: #3498db;
    margin-bottom: 5px;
}
.user-stat-label {
     font-size: 0.9em;
     font-size: 0.9em;
    color: #7f8c8d;
}
}


/* Barra de nivel */
/* ===== BOTONES DE ACCIÓN ===== */
.user-level-container {
.user-actions {
     margin: 25px 0;
     flex: 1;
}
 
.user-level-header {
     display: flex;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     margin-bottom: 8px;
    gap: 10px;
     align-items: flex-start;
}
}


.user-level-title {
.action-button {
     font-size: 1.2em;
     background: #3498db;
    color: #2c3e50;
     color: white;
    margin: 0;
     padding: 8px 15px;
}
     border-radius: 5px;
 
     text-decoration: none;
.user-level-number {
    font-weight: bold;
     color: #3498db;
}
 
.user-level-progress {
    height: 20px;
     background-color: #ecf0f1;
     border-radius: 10px;
    overflow: hidden;
    position: relative;
}
 
.user-level-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
     border-radius: 10px;
    transition: width 0.5s ease;
}
 
.user-level-next {
     font-size: 0.9em;
     font-size: 0.9em;
     color: #7f8c8d;
     transition: all 0.3s;
    margin-top: 8px;
    text-align: right;
}
}


/* Pestañas del perfil */
.action-button:hover {
.user-profile-tabs {
     background: #2980b9;
     display: flex;
     transform: translateY(-2px);
     border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}
}


.user-profile-tab {
/* ===== SECCIONES DE PERFIL ===== */
     padding: 10px 20px;
.user-profile-sections {
     cursor: pointer;
     display: grid;
    color: #7f8c8d;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-bottom: 3px solid transparent;
     gap: 20px;
     transition: all 0.3s ease;
}
}


.user-profile-tab:hover {
.profile-section {
     color: #3498db;
     background: #f9f9f9;
}
 
.user-profile-tab.active {
    color: #3498db;
    border-bottom-color: #3498db;
    font-weight: bold;
}
 
/* Contenido de las pestañas */
.user-profile-content {
     padding: 15px;
     padding: 15px;
     background-color: #f8f9fa;
     border-radius: 8px;
     border-radius: 6px;
     border-left: 4px solid #3498db;
}
}


/* Lista de logros */
.profile-section h3 {
.user-achievements-list {
    margin-top: 0;
     display: grid;
     color: #2c3e50;
     grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
     border-bottom: 1px dashed #ddd;
     gap: 15px;
     padding-bottom: 8px;
}
}


.user-achievement {
.section-content {
     text-align: center;
     margin: 10px 0;
    padding: 10px;
     color: #555;
     background-color: #fff;
     line-height: 1.5;
    border-radius: 6px;
     box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
}


.user-achievement:hover {
.edit-link {
     transform: translateY(-5px);
    font-size: 0.8em;
     box-shadow: 0 5px 15px rgba(0,0,0,0.1);
     color: #7f8c8d;
     text-decoration: none;
}
}


.user-achievement-icon {
.edit-link:hover {
    width: 60px;
     text-decoration: underline;
    height: 60px;
    margin: 0 auto 10px;
    display: block;
}
 
.user-achievement-name {
     font-size: 0.9em;
    color: #2c3e50;
    margin: 0;
}
}


/* Sección de actividad reciente */
/* ===== ACTIVIDAD RECIENTE ===== */
.user-activity-item {
.activity-item {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
     display: flex;
     display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
     align-items: center;
     align-items: center;
    gap: 15px;
}
}


.user-activity-item:last-child {
.activity-icon {
     border-bottom: none;
    width: 24px;
     height: 24px;
}
}


.user-activity-icon {
.activity-text {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.user-activity-content {
     flex: 1;
     flex: 1;
    font-size: 0.9em;
}
}


.user-activity-text {
.activity-time {
    margin: 0;
    color: #2c3e50;
}
 
.user-activity-time {
     font-size: 0.8em;
     font-size: 0.8em;
     color: #7f8c8d;
     color: #95a5a6;
    margin-top: 5px;
}
}


/* Responsive design */
/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
@media (max-width: 768px) {
     .user-profile-header {
     .user-profile-header {
         flex-direction: column;
         flex-direction: column;
        align-items: center;
        text-align: center;
    }
   
    .user-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
   
    .user-achievements-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 480px) {
    .user-stats-container {
        grid-template-columns: 1fr;
    }
   
    .user-achievements-list {
        grid-template-columns: repeat(2, 1fr);
     }
     }
      
      
     .user-profile-tabs {
     .user-actions {
         overflow-x: auto;
         justify-content: center;
        white-space: nowrap;
     }
     }
}
}

Revisión del 09:14 7 julio 2025

/* ===== ESTILOS GENERALES ===== */
.mw-first-heading {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding: 15px 0;
    font-size: 2.5em;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    margin-bottom: 20px;
}

/* ===== ESTILOS DEL INFOBOX ===== */
.infobox {
  border: 1px solid #a2a9b1;
  border-spacing: 0;
  background-color: #edf3f8;
  color: black;
  margin: 0.5em 0 0.5em 1em;
  padding: 0;
  float: right;
  clear: right;
  font-size: 88%;
  line-height: 1.5em;
  width: 22em;
  border-collapse: separate;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Encabezados principales */
.infobox > table > tbody > tr > th[colspan="2"],
.infobox-title {
  background-color: #ff9d00;
  color: #000;
  text-align: center;
  padding: 0.4em 0.6em;
  font-size: 110%;
}

/* Encabezados secundarios */
.infobox > table > tbody > tr > th:not([colspan="2"]) {
  background-color: #ffe0b8;
  color: #222;
  text-align: left;
  width: 40%;
  padding: 0.3em 0.6em;
  border-right: 1px solid #ffb347;
}

/* Celdas de datos */
.infobox td {
  vertical-align: top;
  padding: 0.3em 0.6em;
  background-color: #edf3f8;
  border-top: 1px solid #f0f0f0;
}

/* ===== SECCIÓN DE IMAGEN CORREGIDA ===== */
.infobox-image {
  text-align: center;
  padding: 0.6em;
  background-color: #edf3f8 !important;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.infobox-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #edf3f8;
  z-index: 0;
}

.infobox-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  background-color: #edf3f8 !important;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 2px;
}

/* Corrección especial para PNG/SVG */
.infobox-image img[src$=".png"],
.infobox-image img[src$=".svg"] {
  background-image: none !important;
}

/* Pie de infobox */
.infobox-footer {
  font-size: 85%;
  text-align: center;
  padding: 0.6em;
  color: #666;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

/* Subtítulos */
.infobox-subtitle {
  font-weight: bold;
  text-align: center;
  padding: 0.3em;
  margin: 0.3em 0;
  background-color: #f5f5f5;
}

/* ===== MEJORAS DE VISUALIZACIÓN ===== */
/* Ocultar elementos vacíos */
.infobox-data th:empty, 
.infobox-data td:empty,
.infobox-data tr:has(> th:empty:only-child),
.infobox-data tr:has(> td:empty:only-child),
.infobox-data tr:has(> th:empty + td:empty) {
  display: none !important;
}

/* Ocultar filas condicionales vacías */
.infobox-data tr:has(> td:contains("{{#if:")),
.infobox-data tr:has(> td:contains("{{#unless:")),
.infobox-data tr:has(> td:contains("{{/if}}")),
.infobox-data tr:has(> td:contains("{{/unless}}")) {
  display: none !important;
}

/* ===== CORRECCIONES ESPECÍFICAS ===== */
/* Eliminar fondo en imágenes transparentes */
.infobox-image .transparent-bg {
  background: #edf3f8 !important;
}

/* Asegurar compatibilidad con móviles */
@media screen and (max-width: 600px) {
  .infobox {
    width: 100%;
    margin: 0.5em 0;
    float: none;
  }
  
  .infobox-image img {
    max-width: 80%;
  }
}






/* Panel de Administración Mejorado */
.admin-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.admin-dashboard-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #36c;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.admin-stats-grid div {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9em;
}

.admin-stats-grid i {
    display: block;
    font-size: 1.8em;
    margin-bottom: 5px;
    color: #36c;
}

.admin-quick-actions {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #00af89;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.action-button {
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    color: white;
    font-weight: bold;
    transition: all 0.2s;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.action-button.danger { background: #d33; }
.action-button.warning { background: #fc3; }
.action-button.success { background: #00af89; }

/* Secciones */
.admin-links-section {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-links-section h2 {
    background: #2c3e50;
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 1.1em;
}

.admin-links-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 15px;
}

.admin-links-item {
    padding: 10px;
    border-rad







/* ===== ESTILOS PARA SOCIAL PROFILE ===== */

/* ===== ESTRUCTURA PRINCIPAL ===== */
.user-profile-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== CABECERA ===== */
.user-profile-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.user-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3498db;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.user-level {
    background: #f1c40f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

/* ===== BOTONES DE ACCIÓN ===== */
.user-actions {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.action-button {
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s;
}

.action-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* ===== SECCIONES DE PERFIL ===== */
.user-profile-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.profile-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.profile-section h3 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
}

.section-content {
    margin: 10px 0;
    color: #555;
    line-height: 1.5;
}

.edit-link {
    font-size: 0.8em;
    color: #7f8c8d;
    text-decoration: none;
}

.edit-link:hover {
    text-decoration: underline;
}

/* ===== ACTIVIDAD RECIENTE ===== */
.activity-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.activity-icon {
    width: 24px;
    height: 24px;
}

.activity-text {
    flex: 1;
    font-size: 0.9em;
}

.activity-time {
    font-size: 0.8em;
    color: #95a5a6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .user-profile-header {
        flex-direction: column;
    }
    
    .user-actions {
        justify-content: center;
    }
}

Publicidad:

Patrocinador Bottom