Skip to content

Commit c01839d

Browse files
committed
Adjusted website styles
1 parent e7ef16f commit c01839d

39 files changed

+97
-177
lines changed

website/docs/index.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,15 @@ description: Welcome to FireCMS, the open source headless CMS and admin panel ex
1515
:::
1616

1717

18-
FireCMS uses [Firebase](https://firebase.google.com/) as a **backend**. You are
18+
FireCMS uses [Firebase](https://firebase.google.com/) or MongoDB Atlas as a **backend**. You are
1919
the **owner** of your Firebase project, and FireCMS is a tool that helps you build your
2020
admin panel on top of it. FireCMS provides all the editing options you lack in a simple Firebase project.
2121

22+
FireCMS creates CRUD views based on your configurations with ease. It's simple to set up for common cases and just
23+
as easy to extend and customize to fit your specific needs.
24+
25+
FireCMS imposes no data structure restrictions, allowing seamless integration with any project right from the start.
26+
2227
FireCMS 3.0 is the latest version of FireCMS.
2328
It can be used in different ways:
2429
- As a managed service in the Cloud: [FireCMS Cloud](https://app.firecms.co). In this version you can create and manage

website/src/css/custom.css

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,16 @@ h5 {
2121
}
2222

2323
h6 {
24-
@apply text-xl font-headers font-medium
24+
@apply text-xl font-headers font-normal
2525
}
2626

27-
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
27+
h1, .h1, h2, .h2, h3, .h3 {
2828
font-weight: 600 !important;
2929
}
30-
30+
.footer__title {
31+
font-size: 1.25rem;
32+
font-weight: 600;
33+
}
3134
tr {
3235
border-top: none;
3336
}
@@ -82,7 +85,6 @@ tr {
8285
}
8386

8487
.gradient-text {
85-
font-weight: 500;
8688
width: fit-content;
8789
color: transparent;
8890
background-clip: text;
@@ -161,12 +163,18 @@ tr {
161163
--ifm-color-primary-lightest: #3e97ff;
162164
--ifm-code-font-size: 95%;
163165
--ifm-font-weight-bold: 600;
164-
--ifm-h1-font-size: 4rem;
165166
/*--ifm-list-left-padding: 0rem;*/
166167
--ifm-custom-navbar-background-color: rgba(48, 49, 55, 0.33);
167168
--ifm-border-color: rgba(100, 116, 139, 0.4);
168169
--ifm-background-color: white;
169170

171+
--ifm-h1-font-size: 3.75rem;
172+
--ifm-h2-font-size: 3rem;
173+
--ifm-h3-font-size: 2.25rem;
174+
--ifm-h4-font-size: 1.875rem;
175+
--ifm-h5-font-size: 1.5rem;
176+
--ifm-h6-font-size: 1.25rem;
177+
170178
--ifm-z-index-fixed: 20;
171179

172180
--ifm-toc-border-color: var(--ifm-border-color);
@@ -272,6 +280,14 @@ article blockquote {
272280
margin-bottom: 16px;
273281
}
274282

283+
.theme-admonition {
284+
--ifm-h5-font-size: 0.875rem;
285+
}
286+
.pagination-nav__link {
287+
--ifm-h5-font-size: 0.875rem;
288+
--ifm-h4-font-size: 1rem;
289+
}
290+
275291
.sidebarViewport_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module {
276292
background-color: var(--ifm-background-color);
277293
border: none;
@@ -356,10 +372,6 @@ a.btn {
356372
text-decoration: none;
357373
}
358374

359-
h1, h2, h3 {
360-
font-weight: 500;
361-
}
362-
363375
h2 {
364376
margin-top: 2rem;
365377
}
@@ -501,6 +513,10 @@ html[data-theme="dark"] {
501513
top: calc(var(--ifm-navbar-height) + 36px) !important;
502514
}
503515

516+
.markdown h1:first-child {
517+
--ifm-h1-font-size: 3rem;
518+
}
519+
504520
.markdown > h1 {
505521
margin-top: 6rem;
506522
}

website/src/neat_colors.json

Lines changed: 0 additions & 37 deletions
This file was deleted.

website/src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ function Home() {
6161

6262
<TechSplash/>
6363

64-
<FeaturesPanels/>
65-
6664
<ImportDataIntro/>
6765

66+
<FeaturesPanels/>
67+
6868
<UsageExamples/>
6969

7070
<FirebaseTeaser/>

website/src/pages/openai.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ function DataEnhancement() {
2222
<DataEnhancementUseCases/>
2323
<DataStructure/>
2424
<AutofillFeature/>
25-
<BatchProcessing/>
2625
<Translations/>
2726
{/*<CustomizationOptions />*/}
2827
{/*<Testimonials />*/}

website/src/pages/pro.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function ProPage() {
6161
<ProDeveloperFeatures/>
6262

6363
<Panel color={"gray"} includePadding={true} innerClassName={"flex flex-col items-center"}>
64-
<h2 className={"h2 mb-3 uppercase font-mono text-center mx-auto"}>
64+
<h2 className={"mb-3 uppercase font-mono text-center mx-auto"}>
6565
LEARN MORE ABOUT FIRECMS PRO
6666
</h2>
6767
<HeroProButtons/>

website/src/partials/data_enhancement/AutofillFeature.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function AutofillFeature() {
3939

4040
</>}
4141
right={<>
42-
<h2 className={"h2 gradient-text uppercase"}>
42+
<h2 className={"gradient-text uppercase"}>
4343
Fill in Details for Nike Air Max
4444
</h2>
4545
<p className="text-xl">

website/src/partials/data_enhancement/BatchProcessing.tsx

Lines changed: 0 additions & 35 deletions
This file was deleted.

website/src/partials/data_enhancement/DataEnhancementHero.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ export function DataEnhancementHero() {
2222
left={
2323
<div>
2424

25-
<h1 className="text-4xl tracking-tight font-extrabold md:text-6xl">
25+
<h2 className="text-4xl tracking-tight font-extrabold md:text-6xl">
2626
<span className="block">ChatGPT</span>
2727
<span
2828
className="block text-primary">Integration</span>
29-
</h1>
29+
</h2>
3030
<div className="mt-3 text-xl sm:mt-4 md:text-2xl">
3131
<p>
3232
Discover the power of FireCMS with ChatGPT integration,

website/src/partials/data_enhancement/DataEnhancementUseCases.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ import { Panel } from "../general/Panel";
33

44
export function DataEnhancementUseCases() {
55
return <Panel color={"primary"}>
6-
<h2 className="h1 my-1 text-white uppercase font-mono">
6+
<h2 className="my-1 text-white uppercase font-mono">
77
The world has changed.
88
</h2>
9-
<h2 className="h1 my-1 text-white uppercase font-mono">
9+
<h2 className="my-1 text-white uppercase font-mono">
1010
Your CMS should too.
1111
</h2>
12-
{/*<h2 className="h1 my-1 text-white uppercase">*/}
12+
{/*<h2 className="my-1 text-white uppercase">*/}
1313
{/* Generate content ideas...*/}
1414
{/*</h2>*/}
15-
{/*<h2 className="h1 my-1 text-white uppercase">*/}
15+
{/*<h2 className="my-1 text-white uppercase">*/}
1616
{/* OR Translate your documents...*/}
1717
{/*</h2>*/}
18-
{/*<h2 className="h1 my-1 text-white uppercase">*/}
18+
{/*<h2 className="my-1 text-white uppercase">*/}
1919
{/* OR Create SEO-friendly titles...*/}
2020
{/*</h2>*/}
21-
{/*<h2 className="h1 my-1 text-white uppercase">*/}
21+
{/*<h2 className="my-1 text-white uppercase">*/}
2222
{/* ...OR every other use case you can think of*/}
2323
{/*</h2>*/}
2424
</Panel>;

0 commit comments

Comments
 (0)