/home/techb158/trello.abdallabala.com/public
Edit: /home/techb158/trello.abdallabala.com/public/styles.css (2334B)
:root {
--bg: #f4f5f7;
--surface: #ffffff;
--text: #172b4d;
--muted: #5e6c84;
--border: #dfe1e6;
--accent: #0052cc;
--danger: #de350b;
--warning: #ff991f;
--success: #00875a;
}
* { box-sizing: border-box; }
body {
margin: 0;
padding: 16px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text);
background: var(--bg);
}
h1, h2, h3 { margin-top: 0; }
label { display: block; font-size: 12px; font-weight: 600; margin: 10px 0 4px; color: var(--muted); }
input, select, textarea {
width: 100%;
border: 1px solid var(--border);
border-radius: 6px;
padding: 8px;
font: inherit;
background: #fff;
}
textarea { min-height: 74px; resize: vertical; }
button {
border: 0;
border-radius: 6px;
padding: 9px 12px;
font-weight: 700;
background: var(--accent);
color: white;
cursor: pointer;
}
button.secondary { background: #ebecf0; color: var(--text); }
button.danger { background: var(--danger); }
button:disabled { opacity: .55; cursor: not-allowed; }
.card, .panel {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
padding: 14px;
margin-bottom: 12px;
}
.grid { display: grid; gap: 10px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.muted { color: var(--muted); }
.score { font-size: 36px; line-height: 1; font-weight: 800; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; background: #ebecf0; }
.badge.low { background: #e3fcef; color: var(--success); }
.badge.medium { background: #fffae6; color: #974f0c; }
.badge.high { background: #ffebe6; color: var(--danger); }
.badge.critical { background: #bf2600; color: #fff; }
.risk-item { border-left: 4px solid var(--border); padding-left: 10px; }
.risk-item.high, .risk-item.critical { border-left-color: var(--danger); }
.risk-item.medium { border-left-color: var(--warning); }
.risk-item.low { border-left-color: var(--success); }
.small { font-size: 12px; }
.footer-actions { position: sticky; bottom: 0; background: var(--bg); padding-top: 10px; }
@media (max-width: 720px) { .grid.two, .grid.three { grid-template-columns: 1fr; } }