Skip to content

Commit 735ccac

Browse files
committed
css organize
1 parent 414c9ce commit 735ccac

File tree

4 files changed

+35
-36
lines changed

4 files changed

+35
-36
lines changed

docusaurus/src/css/custom.css

Lines changed: 3 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33
* bundles Infima by default. Infima is a CSS framework designed to
44
* work well for content-centric websites.
55
*/
6-
@import './codacy-variables.css';
7-
@import './ifm-overrides.css';
6+
@import './imports/codacy-variables.css';
7+
@import './imports/ifm-overrides.css';
88
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
99

1010
/* You can override the default Infima variables here. */
1111
:root {
1212
--ifm-font-size-base: 87.5%;
1313
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
14-
15-
/* custom overides from codacy*/
1614
--ifm-font-family-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
15+
1716
--ifm-toc-border-color: var(--ifm-color-emphasis-200);
1817

1918
/* overriding the arrow in the sidebar */
@@ -23,7 +22,6 @@
2322
/* For readability concerns, you should choose a lighter palette in dark mode. */
2423
[data-theme='dark'] {
2524
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
26-
2725
--ifm-toc-border-color: var(--ifm-color-empaphis-200);
2826
}
2927

@@ -44,34 +42,3 @@
4442
.menu {
4543
padding: 0.5rem
4644
}
47-
48-
.nav-multistep {
49-
margin: 1rem 0 1.25rem;
50-
padding: 1rem;
51-
border: 1px solid var(--ifm-color-emphasis-300);
52-
border-radius: 0.75rem;
53-
background: var(--ifm-background-surface-color);
54-
}
55-
56-
.nav-multistep__label {
57-
margin: 0 0 0.75rem;
58-
color: var(--ifm-color-emphasis-700);
59-
font-size: 0.875rem;
60-
}
61-
62-
.nav-multistep__list {
63-
margin: 0;
64-
padding-left: 1.25rem;
65-
}
66-
67-
.nav-multistep__step {
68-
margin: 0.25rem 0;
69-
}
70-
71-
.nav-multistep__step--active {
72-
font-weight: 600;
73-
}
74-
75-
.nav-multistep__current {
76-
color: var(--ifm-font-color-base);
77-
}
File renamed without changes.
File renamed without changes.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
.nav-multistep {
3+
margin: 1rem 0 1.25rem;
4+
padding: 1rem;
5+
border: 1px solid var(--ifm-color-emphasis-300);
6+
border-radius: 0.75rem;
7+
background: var(--ifm-background-surface-color);
8+
}
9+
10+
.nav-multistep__label {
11+
margin: 0 0 0.75rem;
12+
color: var(--ifm-color-emphasis-700);
13+
font-size: 0.875rem;
14+
}
15+
16+
.nav-multistep__list {
17+
margin: 0;
18+
padding-left: 1.25rem;
19+
}
20+
21+
.nav-multistep__step {
22+
margin: 0.25rem 0;
23+
}
24+
25+
.nav-multistep__step--active {
26+
font-weight: 600;
27+
}
28+
29+
.nav-multistep__current {
30+
color: var(--ifm-font-color-base);
31+
}
32+

0 commit comments

Comments
 (0)