96 lines
5.2 KiB
CSS
96 lines
5.2 KiB
CSS
/* Main shared styles for cards, buttons, modals used across pages */
|
|
|
|
/* Page-specific styles for GroupsOverviewPage */
|
|
.groups-overview-container { padding-top: 20px; padding-bottom: 40px; min-height: 80vh; }
|
|
.header-card { border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-bottom: 30px; text-align: center; padding: 20px; }
|
|
.header-title { font-family: roboto; font-weight: 500; font-size: 28px; color: #333333; margin-bottom: 10px; }
|
|
.header-subtitle { font-family: roboto; font-size: 16px; color: #666666; margin-bottom: 20px; }
|
|
@media (max-width:800px) { .nav__links, .cta { display:none; } }
|
|
|
|
/* Page-specific styles for ModerationPage */
|
|
.moderation-page { font-family: roboto; max-width: 1200px; margin: 0 auto; padding: 20px; }
|
|
.moderation-content h1 { font-family: roboto; text-align:left; color:#333; margin-bottom:30px; }
|
|
.moderation-loading, .moderation-error { text-align:center; padding:50px; font-size:18px; }
|
|
.moderation-error { color:#dc3545; }
|
|
|
|
.moderation-stats { display:flex; justify-content:center; gap:40px; margin-bottom:40px; padding:20px; background:#f8f9fa; border-radius:12px; }
|
|
.stat-item { text-align:center; }
|
|
.stat-number { display:block; font-size:2.5rem; font-weight:bold; color:#007bff; }
|
|
.stat-label { display:block; font-size:0.9rem; color:#6c757d; margin-top:5px; }
|
|
|
|
|
|
|
|
.moderation-section { margin-bottom:50px; }
|
|
.moderation-section h2 { color:#333; border-bottom:2px solid #e9ecef; padding-bottom:10px; margin-bottom:25px; }
|
|
.no-groups { text-align:center; color:#6c757d; font-style:italic; padding:30px; }
|
|
|
|
|
|
/* Background */
|
|
.allContainer {
|
|
/*background: url(../../../Images/background.svg) no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;*/
|
|
background-size: cover;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.allContainerNoBackground {
|
|
background-size: cover;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
background-color: whitesmoke;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn { padding:8px 12px; border:none; border-radius:6px; cursor:pointer; font-size:0.85rem; transition:background-color 0.2s; flex:1; min-width:80px; }
|
|
.btn-secondary { background:#6c757d; color:white; }
|
|
.btn-secondary:hover { background:#5a6268; }
|
|
.btn-success { background:#28a745; color:white; }
|
|
.btn-success:hover { background:#218838; }
|
|
.btn-warning { background:#ffc107; color:#212529; }
|
|
.btn-warning:hover { background:#e0a800; }
|
|
.btn-danger { background:#dc3545; color:white; }
|
|
.btn-danger:hover { background:#c82333; }
|
|
.btn-sm { padding:4px 8px; font-size:0.75rem; min-width:auto; }
|
|
|
|
/* Modal */
|
|
.image-modal-overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.8); display:flex; align-items:center; justify-content:center; z-index:1000; padding:20px; }
|
|
.image-modal { background:white; border-radius:12px; max-width:90vw; max-height:90vh; overflow:hidden; display:flex; flex-direction:column; }
|
|
.modal-header { display:flex; justify-content:space-between; align-items:center; padding:20px; border-bottom:1px solid #e9ecef; background:#f8f9fa; }
|
|
.modal-header h2 { margin:0; color:#333; }
|
|
.close-btn { background:none; border:none; font-size:2rem; cursor:pointer; color:#6c757d; padding:0; width:40px; height:40px; display:flex; align-items:center; justify-content:center; }
|
|
.close-btn:hover { color:#333; }
|
|
.modal-body { padding:20px; overflow-y:auto; }
|
|
.group-details { background:#f8f9fa; padding:15px; border-radius:8px; margin-bottom:20px; }
|
|
.group-details p { margin:5px 0; }
|
|
.images-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); gap:15px; }
|
|
.image-item { background:#f8f9fa; border-radius:8px; overflow:hidden; position:relative; }
|
|
.modal-image { width:100%; height:150px; object-fit:cover; display:block; }
|
|
.image-actions { padding:10px; display:flex; justify-content:space-between; align-items:center; background:white; }
|
|
.image-name { font-size:0.8rem; color:#6c757d; flex:1; margin-right:10px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
|
|
|
|
@media (max-width:768px) {
|
|
.moderation-stats { flex-direction:column; gap:20px; }
|
|
.btn { width:100%; }
|
|
.image-modal { max-width:95vw; max-height:95vh; }
|
|
.images-grid { grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); }
|
|
}
|
|
|
|
|
|
/* Common CTA / page-level utilities (moved from page CSS) */
|
|
.view-button { border-radius: 20px; text-transform: none; font-size: 12px; padding: 6px 16px; background: linear-gradient(45deg, #4CAF50 30%, #45a049 90%); color: white; border: none; cursor: pointer; }
|
|
.view-button:hover { background: linear-gradient(45deg, #45a049 30%, #4CAF50 90%); }
|
|
.action-buttons { display:flex; gap:15px; justify-content:center; flex-wrap: wrap; margin-top:20px; }
|
|
.primary-button { border-radius: 25px; padding: 12px 30px; font-size:16px; font-weight:500; text-transform:none; background: linear-gradient(45deg, #2196F3 30%, #1976D2 90%); color:white; border:none; cursor:pointer; }
|
|
.home-button { border-radius:25px; padding:12px 30px; font-size:16px; font-weight:500; text-transform:none; border:2px solid #4CAF50; color:#4CAF50; background-color: transparent; cursor:pointer; }
|
|
.empty-state { text-align:center; padding:60px 20px; }
|
|
.loading-container { text-align:center; padding:60px 20px; }
|