Files
wp-cycling-stats/assets/css/admin.css
T
2026-02-02 14:51:21 +01:00

61 lines
1.3 KiB
CSS

/* Styles for WordPress Activity Stats Plugin - Admin Area */
/* Infografika */
.mystat-infographic-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.mystat-infographic-card {
background: #fff;
border: 1px solid #e0e0e0;
border-radius: 5px;
padding: 15px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.mystat-infographic-card h3 {
margin-top: 0;
color: #555;
font-size: 1.1em;
}
.mystat-infographic-card p {
font-size: 1.8em;
font-weight: bold;
color: #333;
margin-bottom: 0;
}
/* Kontener dla szczegółów aktywności */
#mystat-details-container {
display: flex;
flex-wrap: wrap;
gap: 2%;
}
/* Szczegóły aktywności */
.mystat-details-col {
flex: 1 1 48%; /* Pozwala na elastyczne dopasowanie, z bazową szerokością 48% */
min-width: 300px; /* Zapobiega zbytniemu ściskaniu kolumn na mniejszych ekranach */
}
/* Chart Controls */
.mystat-chart-controls {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 15px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
}
.mystat-chart-tabs.nav-tab-wrapper {
border-bottom: none;
margin-bottom: 0;
}
.mystat-xaxis-switcher {
padding-top: 5px;
white-space: nowrap;
}