-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
102 lines (92 loc) · 3.79 KB
/
Copy pathcustom.css
File metadata and controls
102 lines (92 loc) · 3.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* Match the landing page (agentaos.ai): Bricolage Grotesque + Inter + Space Grotesk */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;450;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');
/* Sidebar — subtle paper/sand tint, ink navy in dark */
nav[aria-label="Sidebar"] {
background: linear-gradient(180deg, #F6F7F9 0%, #ffffff 100%);
}
.dark nav[aria-label="Sidebar"] {
background: linear-gradient(180deg, #0E1A3D 0%, #0B1533 100%);
}
/* Cards — depth + hover, brand indigo */
.card {
border: 1px solid rgba(79, 70, 229, 0.08);
transition: all 0.2s ease;
}
.card:hover {
border-color: rgba(79, 70, 229, 0.22);
box-shadow: 0 8px 24px rgba(79, 70, 229, 0.07);
transform: translateY(-1px);
}
.dark .card:hover {
box-shadow: 0 8px 24px rgba(79, 70, 229, 0.14);
}
/* Headings — landing letter-spacing */
h1 { letter-spacing: -0.02em; }
h2 {
margin-top: 2rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid rgba(11, 21, 51, 0.10);
}
.dark h2 { border-bottom-color: rgba(255, 255, 255, 0.12); }
/* Tables — cleaner */
table th {
background: rgba(79, 70, 229, 0.04);
font-weight: 600;
}
.dark table th { background: rgba(79, 70, 229, 0.10); }
table tr:hover { background: rgba(79, 70, 229, 0.02); }
/* Code blocks */
pre {
border: 1px solid rgba(11, 21, 51, 0.08) !important;
border-radius: 8px !important;
}
/* ---- Topbar buttons in the landing's neo-brutalist style ---- */
/* "Open Account" CTA — indigo fill, ink border, hard shadow, lift on hover */
a.group[href="https://app.agentaos.ai"] {
background: #4F46E5 !important;
color: #fff !important;
border: 1.5px solid #0B1533 !important;
border-radius: 12px !important;
box-shadow: 3px 3px 0 #0B1533 !important;
font-weight: 650 !important;
padding: 8px 16px !important;
transition: transform 0.12s ease, box-shadow 0.12s ease !important;
}
a.group[href="https://app.agentaos.ai"]:hover {
transform: translate(-2px, -2px) !important;
box-shadow: 5px 5px 0 #0B1533 !important;
color: #fff !important;
}
/* "Website" topbar link — ghost button (white, ink border, hard shadow) */
.navbar-link a {
background: #fff !important;
color: #0B1533 !important;
border: 1.5px solid #0B1533 !important;
border-radius: 12px !important;
box-shadow: 3px 3px 0 #0B1533 !important;
font-weight: 600 !important;
padding: 7px 14px !important;
transition: transform 0.12s ease, box-shadow 0.12s ease !important;
}
.navbar-link a:hover {
transform: translate(-2px, -2px) !important;
box-shadow: 5px 5px 0 #0B1533 !important;
color: #0B1533 !important;
}
/* Dark mode: light border/shadow so the buttons read on navy */
.dark a.group[href="https://app.agentaos.ai"] { box-shadow: 3px 3px 0 #A5B4FC !important; border-color: #A5B4FC !important; }
.dark a.group[href="https://app.agentaos.ai"]:hover { box-shadow: 5px 5px 0 #A5B4FC !important; }
.dark .navbar-link a { background: transparent !important; color: #FFFFFF !important; border-color: #A5B4FC !important; box-shadow: 3px 3px 0 #A5B4FC !important; }
.dark .navbar-link a:hover { box-shadow: 5px 5px 0 #A5B4FC !important; color: #FFFFFF !important; }
/* ---- Content links — brand indigo, underlined ---- */
#content-area a.link, .prose a.link {
color: #4F46E5 !important;
text-decoration: underline;
text-decoration-color: rgba(79, 70, 229, 0.35);
text-underline-offset: 2px;
font-weight: 500;
}
#content-area a.link:hover, .prose a.link:hover { text-decoration-color: #4F46E5 !important; }
.dark #content-area a.link, .dark .prose a.link { color: #A5B4FC !important; text-decoration-color: rgba(165, 180, 252, 0.4); }
/* ---- Announcement banner — match the landing's ink bar (#0B1533, white text) ---- */
#banner { background-color: #0B1533 !important; }