-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathstyle.css
More file actions
169 lines (141 loc) · 3.51 KB
/
style.css
File metadata and controls
169 lines (141 loc) · 3.51 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/* Style the Sign Up navbar link as an orange button */
li.navbar-link a[href*="firecrawl.dev/signin"] {
background-color: #ff4d00;
color: #fff;
}
li.navbar-link a[href*="firecrawl.dev/signin"]:hover {
background-color: #e64500;
}
/* Dark mode adjustments */
.dark li.navbar-link a[href*="firecrawl.dev/signin"] {
background-color: #ff4d00;
color: #fff;
}
.dark li.navbar-link a[href*="firecrawl.dev/signin"]:hover {
background-color: #e64500;
}
/* Move Sign Up button to the right */
li.navbar-link:has(a[href*="firecrawl.dev/signin"]) {
order: 99;
}
/* Move GitHub button to the left (before Status/Support) */
nav ul li:has(a[href="https://github.com/firecrawl/firecrawl"])
{
order: -1;
}
/* Ready to Build CTA Widget Styles */
#firecrawl-cta-widget {
margin-top: 24px;
}
.firecrawl-cta-box {
background: linear-gradient(180deg, rgba(255, 77, 0, 0.04) 0%, rgba(255, 77, 0, 0.02) 100%);
border: 1px solid rgba(255, 77, 0, 0.15);
border-radius: 12px;
padding: 20px;
}
.firecrawl-cta-logo {
height: 20px;
width: auto;
object-fit: contain;
margin-bottom: 12px;
}
.firecrawl-cta-logo-dark {
display: none;
}
.dark .firecrawl-cta-logo-light {
display: none;
}
.dark .firecrawl-cta-logo-dark {
display: block;
}
.firecrawl-cta-title {
font-size: 18px;
font-weight: 600;
color: #111;
margin: 0 0 8px 0;
line-height: 1.3;
}
.firecrawl-cta-description {
font-size: 13px;
line-height: 1.5;
color: #666;
margin: 0 0 16px 0;
}
.firecrawl-cta-description strong {
color: #333;
}
.firecrawl-cta-buttons {
display: flex;
flex-direction: column;
gap: 8px;
}
.firecrawl-cta-btn-primary {
display: block;
text-align: center;
background-color: #ff4d00;
color: #fff !important;
font-size: 14px;
font-weight: 500;
padding: 10px 16px;
border-radius: 16px;
text-decoration: none !important;
transition: background-color 0.2s ease;
}
.firecrawl-cta-btn-primary:hover {
background-color: #e64500;
text-decoration: none !important;
}
.firecrawl-cta-btn-secondary {
display: block;
text-align: center;
background-color: #fff;
color: #333 !important;
font-size: 14px;
font-weight: 500;
padding: 10px 16px;
border-radius: 16px;
border: 1px solid #e5e7eb;
text-decoration: none !important;
transition: border-color 0.2s ease, background-color 0.2s ease;
}
.firecrawl-cta-btn-secondary:hover {
background-color: #f9fafb;
border-color: #d1d5db;
text-decoration: none !important;
}
/* Dark mode styles for CTA */
.dark .firecrawl-cta-box {
background: linear-gradient(180deg, rgba(255, 77, 0, 0.08) 0%, rgba(255, 77, 0, 0.04) 100%);
border-color: rgba(255, 77, 0, 0.2);
}
.dark .firecrawl-cta-title {
color: #fff;
}
.dark .firecrawl-cta-description {
color: #aaa;
}
.dark .firecrawl-cta-description strong {
color: #ddd;
}
.dark .firecrawl-cta-btn-primary {
background-color: #ff4d00;
color: #fff !important;
}
.dark .firecrawl-cta-btn-primary:hover {
background-color: #e64500;
}
.dark .firecrawl-cta-btn-secondary {
background-color: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 0.1);
color: #ddd !important;
}
.dark .firecrawl-cta-btn-secondary:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
}
/* Hide CTA on mobile (right sidebar is typically hidden) */
@media (max-width: 1024px) {
#firecrawl-cta-widget {
display: none;
}
}