-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (47 loc) · 1.02 KB
/
styles.css
File metadata and controls
54 lines (47 loc) · 1.02 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
.nav-logo {
width: auto !important;
height: 40px !important;
max-height: 40px !important;
}
.nav-logo img {
width: auto !important;
height: 40px !important;
max-height: 40px !important;
object-fit: contain !important;
}
/* Custom Security Banner with Lock Icon (Red) - Mintlify Style */
.security-banner {
display: flex;
align-items: flex-start;
gap: 0.75rem;
background: rgba(239, 68, 68, 0.25);
border: 1px solid rgba(239, 68, 68, 0.5);
border-left: 4px solid #ef4444;
padding: 1rem;
border-radius: 0.5rem;
margin: 1rem 0;
}
.security-banner-icon {
font-size: 1.25rem;
color: #ef4444;
flex-shrink: 0;
line-height: 1.5;
}
.security-banner-content {
flex: 1;
font-size: 0.9375rem;
line-height: 1.6;
color: inherit;
}
.security-banner-content strong {
font-weight: 600;
color: inherit;
}
.security-banner-content code {
background: rgba(239, 68, 68, 0.15);
color: #dc2626;
padding: 0.125rem 0.375rem;
border-radius: 0.25rem;
font-size: 0.875em;
font-family: monospace;
}