108 lines
3.0 KiB
CSS
108 lines
3.0 KiB
CSS
:root{
|
|
--ink:#0b0b0c;
|
|
--paper:#fbfaf7;
|
|
--line: rgba(11,11,12,.08);
|
|
--shadow: 0 18px 48px rgba(11,11,12,.10);
|
|
--shadow2: 0 10px 26px rgba(11,11,12,.10);
|
|
--radius: 22px;
|
|
|
|
/* premium blue theme (like the dashboard reference) */
|
|
--blue:#2563eb;
|
|
--blue2:#60a5fa;
|
|
--ice:#eaf2ff;
|
|
--ice2:#f6fbff;
|
|
}
|
|
|
|
html, body { height: 100%; }
|
|
body { font-family: 'Inter', sans-serif; color: var(--ink); }
|
|
|
|
.bg-premium{
|
|
background:
|
|
radial-gradient(1400px 560px at 18% 8%, rgba(96,165,250,.30), rgba(255,255,255,0) 60%),
|
|
radial-gradient(1200px 520px at 92% 12%, rgba(37,99,235,.22), rgba(255,255,255,0) 55%),
|
|
radial-gradient(1100px 620px at 55% 100%, rgba(234,242,255,.95), rgba(255,255,255,0) 60%),
|
|
linear-gradient(180deg, #f6fbff 0%, #ffffff 55%, #f7fbff 100%);
|
|
}
|
|
|
|
.shell {
|
|
border-radius: 26px;
|
|
background: rgba(255,255,255,.78);
|
|
border: 1px solid rgba(11,11,12,.08);
|
|
box-shadow: var(--shadow);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.panel {
|
|
border-radius: var(--radius);
|
|
background: rgba(255,255,255,.92);
|
|
border: 1px solid rgba(11,11,12,.06);
|
|
box-shadow: var(--shadow2);
|
|
}
|
|
|
|
.chip {
|
|
border-radius: 999px;
|
|
background: rgba(255,255,255,.8);
|
|
border: 1px solid rgba(11,11,12,.08);
|
|
}
|
|
|
|
.btn {
|
|
border-radius: 16px;
|
|
transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
|
|
}
|
|
.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 48px rgba(11,11,12,.10); }
|
|
|
|
.drawer.hidden { display:none; }
|
|
|
|
.header {
|
|
padding: 1rem 1.5rem;
|
|
border-bottom: 1px solid var(--line);
|
|
background: rgba(255,255,255,.78);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.logo-circle {
|
|
width: 36px;
|
|
height: 36px;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
background-color: #60a5fa; /* --blue2 */
|
|
}
|
|
|
|
.search-bar .form-control {
|
|
border-radius: 20px;
|
|
padding-left: 2.5rem;
|
|
border-color: transparent;
|
|
background-color: #f3f4f6;
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: 0.75rem center;
|
|
}
|
|
|
|
.search-bar .form-control:focus {
|
|
background-color: white;
|
|
border-color: var(--blue);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.notification-bell {
|
|
font-size: 1.25rem;
|
|
color: #6b7280;
|
|
border: 1px solid var(--line);
|
|
border-radius: 50%;
|
|
width: 36px;
|
|
height: 36px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|