mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 07:22:53 +00:00
127 lines
2.6 KiB
CSS
127 lines
2.6 KiB
CSS
/* ============================================================
|
|
EDR Freight — Header styles
|
|
============================================================ */
|
|
|
|
.fdh-root {
|
|
display: flex;
|
|
height: 80px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 16px;
|
|
padding: 0 22px;
|
|
}
|
|
|
|
/* eyebrow above the page title */
|
|
.fdh-eyebrow {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.6px;
|
|
text-transform: uppercase;
|
|
color: #1B9E7A;
|
|
margin-bottom: 3px;
|
|
}
|
|
.fdh-eyebrow-dot {
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: #2DBF95;
|
|
box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
|
|
}
|
|
|
|
/* action icon buttons */
|
|
.fdh-icon-btn {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 12px;
|
|
background: #f7f9fb;
|
|
border: 1px solid #eef1f4;
|
|
color: #475569;
|
|
cursor: pointer;
|
|
transition: all 160ms ease;
|
|
}
|
|
.fdh-icon-btn:hover {
|
|
background: #ffffff;
|
|
border-color: rgba(27, 158, 122, 0.28);
|
|
color: #1B9E7A;
|
|
box-shadow: 0 4px 12px -4px rgba(27, 158, 122, 0.28);
|
|
transform: translateY(-1px);
|
|
}
|
|
.fdh-icon-btn:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* notification badge */
|
|
.fdh-badge {
|
|
position: absolute;
|
|
top: -5px;
|
|
right: -5px;
|
|
min-width: 17px;
|
|
height: 17px;
|
|
padding: 0 4px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 9px;
|
|
background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
|
|
color: #ffffff;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
border: 2px solid #ffffff;
|
|
box-shadow: 0 2px 6px -1px rgba(239, 68, 68, 0.45);
|
|
}
|
|
|
|
.fdh-divider {
|
|
width: 1px;
|
|
height: 30px;
|
|
background: #e9eef3;
|
|
margin: 0 2px;
|
|
}
|
|
|
|
/* user button */
|
|
.fdh-user {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 5px 12px 5px 5px;
|
|
border-radius: 13px;
|
|
cursor: pointer;
|
|
border: 1px solid transparent;
|
|
transition: all 160ms ease;
|
|
}
|
|
.fdh-user:hover {
|
|
background: #f7f9fb;
|
|
border-color: #eef1f4;
|
|
}
|
|
|
|
.fdh-avatar-ring {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
padding: 2px;
|
|
background: linear-gradient(135deg, #2DBF95 0%, #1B9E7A 100%);
|
|
box-shadow: 0 4px 10px -3px rgba(27, 158, 122, 0.4);
|
|
}
|
|
.fdh-avatar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 34px;
|
|
height: 34px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #1B9E7A 0%, #15805F 100%);
|
|
color: #ffffff;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.3px;
|
|
border: 2px solid #ffffff;
|
|
}
|