-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (61 loc) · 1.45 KB
/
styles.css
File metadata and controls
70 lines (61 loc) · 1.45 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
/* Probe.dev Minimal Branding for Mintlify */
/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
/* Essential brand colors only */
:root {
--primary: #1a1a1a !important;
}
[data-theme="dark"] {
--primary: #ffffff !important;
}
/* Typography - Inter font family */
body,
h1, h2, h3, h4, h5, h6 {
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}
/* Tool-specific color badges */
.tool-ffprobe {
background-color: #1d4ed8;
color: white;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
display: inline-block;
}
.tool-mediainfo {
background-color: #10b981;
color: white;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
display: inline-block;
}
.tool-probe-report {
background-color: #8b5cf6;
color: white;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
display: inline-block;
}
.tool-mediastreamvalidator {
background-color: #dc2626;
color: white;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
display: inline-block;
}
.tool-c2pa {
background-color: #ea580c;
color: white;
padding: 0.25rem 0.5rem;
border-radius: 0.375rem;
font-size: 0.875rem;
font-weight: 500;
display: inline-block;
}