betterNAS/apps/ainas-controlplane/css/ainascontrolplane.css
Harivansh Rathi e5619bb002 style the shell app
Co-authored-by: Codex <noreply@openai.com>
2026-03-31 21:25:53 +00:00

85 lines
1.3 KiB
CSS

.ainas-shell {
max-width: 1100px;
margin: 0 auto;
padding: 32px;
}
.ainas-shell__hero {
margin-bottom: 28px;
padding: 28px;
border-radius: 24px;
background: linear-gradient(135deg, #10212d 0%, #184152 100%);
color: #f6fafc;
}
.ainas-shell__eyebrow {
margin: 0 0 12px;
font-size: 12px;
letter-spacing: 0.12em;
text-transform: uppercase;
opacity: 0.8;
}
.ainas-shell__title {
margin: 0 0 12px;
font-size: 32px;
line-height: 1.1;
}
.ainas-shell__copy {
margin: 0;
max-width: 70ch;
font-size: 15px;
line-height: 1.6;
}
.ainas-shell__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
}
.ainas-shell__card {
padding: 24px;
border: 1px solid rgba(16, 33, 45, 0.12);
border-radius: 20px;
background: #ffffff;
box-shadow: 0 20px 40px rgba(16, 33, 45, 0.06);
}
.ainas-shell__card h2 {
margin-top: 0;
}
.ainas-shell__card dl {
display: grid;
grid-template-columns: minmax(120px, 160px) 1fr;
gap: 8px 16px;
margin: 0;
}
.ainas-shell__card dt {
font-weight: 600;
}
.ainas-shell__card dd {
margin: 0;
}
.ainas-shell__card code {
display: inline-block;
padding: 4px 8px;
border-radius: 999px;
background: #eef4f7;
}
.ainas-shell__card ul {
margin: 0;
padding-left: 20px;
}
.ainas-shell__error {
margin-top: 16px;
color: #b42318;
}