-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (80 loc) · 2.63 KB
/
style.css
File metadata and controls
87 lines (80 loc) · 2.63 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
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400&display=swap');
h1,
.title,
[data-title],
.page-title,
.section-title {
font-family: 'DM Sans', sans-serif;
font-weight: 400;
letter-spacing: 0.025em !important;
}
.nav-logo {
height: 22px;
}
/* Navbar primary button: professional CTA styling aligned with Flexprice */
[class*="nav"] a[href*="admin.flexprice.io"],
[class*="Navbar"] a[href*="admin.flexprice.io"] {
background-color: #134a6b !important;
color: #ffffff !important;
font-weight: 500;
border-radius: 6px;
padding: 0.5rem 1rem;
}
[class*="nav"] a[href*="admin.flexprice.io"]:hover,
[class*="Navbar"] a[href*="admin.flexprice.io"]:hover {
background-color: #0d3d5c !important;
color: #ffffff !important;
}
.content-area, .\32xl\:max-w-2xl {
max-width: 50rem !important;
}
/* Left sidebar anchors: Autumn-style list (circular icon + text) */
[class*="sidebar"] a[href^="mailto:"],
[class*="sidebar"] a[href^="https://join.slack"],
[class*="sidebar"] a[href*="flexprice.io"],
[class*="Sidebar"] a[href^="mailto:"],
[class*="Sidebar"] a[href^="https://join.slack"],
[class*="Sidebar"] a[href*="flexprice.io"],
[data-anchors] a,
a[data-anchor-item] {
display: flex !important;
align-items: center !important;
gap: 0.75rem !important;
padding: 0.5rem 0 !important;
color: inherit !important;
text-decoration: none !important;
font-size: 0.875rem !important;
border-radius: 0.5rem !important;
transition: opacity 0.15s ease;
}
[class*="sidebar"] a[href^="mailto:"]:hover,
[class*="sidebar"] a[href^="https://join.slack"]:hover,
[class*="sidebar"] a[href*="flexprice.io"]:hover,
[class*="Sidebar"] a[href^="mailto:"]:hover,
[class*="Sidebar"] a[href^="https://join.slack"]:hover,
[class*="Sidebar"] a[href*="flexprice.io"]:hover,
[data-anchors] a:hover,
a[data-anchor-item]:hover {
opacity: 0.85;
}
/* Circular icon container for sidebar anchors */
[class*="sidebar"] a[href^="mailto:"] svg,
[class*="sidebar"] a[href^="https://join.slack"] svg,
[class*="sidebar"] a[href*="flexprice.io"] svg,
[class*="Sidebar"] a[href^="mailto:"] svg,
[class*="Sidebar"] a[href^="https://join.slack"] svg,
[class*="Sidebar"] a[href*="flexprice.io"] svg,
[data-anchors] a svg,
a[data-anchor-item] svg {
width: 2rem !important;
height: 2rem !important;
min-width: 2rem !important;
min-height: 2rem !important;
padding: 0.375rem !important;
border-radius: 50% !important;
background: rgba(255, 255, 255, 0.08) !important;
}
[data-theme="light"] [class*="sidebar"] a svg,
[data-theme="light"] [data-anchors] a svg {
background: rgba(0, 0, 0, 0.06) !important;
}