85 lines
1.4 KiB
CSS
85 lines
1.4 KiB
CSS
.footer {
|
|
background: #1a1a1a;
|
|
border-top: 1px solid #2a2a2a;
|
|
padding: 0.75rem 1.5rem;
|
|
padding-left: max(1.5rem, env(safe-area-inset-left));
|
|
padding-right: max(1.5rem, env(safe-area-inset-right));
|
|
padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
|
|
}
|
|
|
|
.footer-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.footer-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.footer-brand {
|
|
font-size: 0.9rem;
|
|
color: #888;
|
|
}
|
|
|
|
.footer-version {
|
|
font-size: 0.75rem;
|
|
color: #555;
|
|
padding: 0.15rem 0.5rem;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.footer-copyright {
|
|
font-size: 0.8rem;
|
|
color: #555;
|
|
}
|
|
|
|
.footer-stats {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem 1rem;
|
|
background: rgba(100, 181, 246, 0.1);
|
|
border: 1px solid rgba(100, 181, 246, 0.2);
|
|
border-radius: 20px;
|
|
text-decoration: none;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.footer-stats:hover {
|
|
background: rgba(100, 181, 246, 0.15);
|
|
border-color: rgba(100, 181, 246, 0.3);
|
|
}
|
|
|
|
.stats-icon {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.stats-label {
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
}
|
|
|
|
.stats-value {
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
color: #64b5f6;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.footer-content {
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.footer-stats {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
}
|