48 lines
817 B
CSS
48 lines
817 B
CSS
/* ========== TOP BAR (SOCIOWIRE header) ========== */
|
|
|
|
.topbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.6rem;
|
|
padding: 0.4rem 0.8rem;
|
|
background: #0b1020;
|
|
border-bottom: 1px solid #1f2937;
|
|
}
|
|
|
|
.logo-circle {
|
|
width: 32px;
|
|
height: 32px;
|
|
background: radial-gradient(circle, #38bdf8, #1d4ed8, #020617);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.title-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.main-title {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sub-title {
|
|
font-size: 0.75rem;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.btn-primary {
|
|
padding: 0.25rem 0.7rem;
|
|
font-size: 0.75rem;
|
|
border-radius: 999px;
|
|
border: 1px solid #22c55e;
|
|
background: #16a34a;
|
|
color: #f9fafb;
|
|
cursor: pointer;
|
|
}
|