Skip to content

Commit 488f444

Browse files
fstoqnov-iohkch1bo
authored andcommitted
filip(fix): apply feedback from PR comments
1 parent 71c4f1e commit 488f444

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+67
-740
lines changed

site/src/css/custom.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99

1010
/* You can override the default Infima variables here. */
1111

12-
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
13-
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap");
1412
@import "./typography.css";
1513

1614
:root {
17-
--ifm-font-family-base: "Poppins", sans-serif;
15+
--ifm-font-family-base: var(--font-base);
1816

1917
--ifm-background-color: #f8f6fa;
2018
--ifm-navbar-background-color: #f1edf5;

site/src/css/typography.css

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,68 @@
1+
/* Poppins font family */
2+
@font-face {
3+
font-family: "Poppins";
4+
src: url("/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
5+
font-weight: 400;
6+
font-style: normal;
7+
}
8+
9+
@font-face {
10+
font-family: "Poppins";
11+
src: url("/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
12+
font-weight: 500;
13+
font-style: normal;
14+
}
15+
16+
@font-face {
17+
font-family: "Poppins";
18+
src: url("/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
19+
font-weight: 600;
20+
font-style: normal;
21+
}
22+
23+
@font-face {
24+
font-family: "Poppins";
25+
src: url("/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
26+
font-weight: 700;
27+
font-style: normal;
28+
}
29+
30+
@font-face {
31+
font-family: "Poppins";
32+
src: url("/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
33+
font-weight: 400;
34+
font-style: italic;
35+
}
36+
37+
/* Lexend font family */
38+
@font-face {
39+
font-family: "Lexend";
40+
src: url("/fonts/Lexend/Lexend-Regular.ttf") format("truetype");
41+
font-weight: 400;
42+
font-style: normal;
43+
}
44+
45+
@font-face {
46+
font-family: "Lexend";
47+
src: url("/fonts/Lexend/Lexend-Medium.ttf") format("truetype");
48+
font-weight: 500;
49+
font-style: normal;
50+
}
51+
52+
@font-face {
53+
font-family: "Lexend";
54+
src: url("/fonts/Lexend/Lexend-SemiBold.ttf") format("truetype");
55+
font-weight: 600;
56+
font-style: normal;
57+
}
58+
59+
@font-face {
60+
font-family: "Lexend";
61+
src: url("/fonts/Lexend/Lexend-Bold.ttf") format("truetype");
62+
font-weight: 700;
63+
font-style: normal;
64+
}
65+
166
:root {
267
--font-base: "Poppins", sans-serif;
368
--font-lexend: "Lexend", sans-serif;

site/src/pages/formal-spec/styles.module.css

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33
background-color: var(--ifm-background-color);
44
}
55

6-
.container {
7-
max-width: 1200px;
8-
margin: 0 auto;
9-
padding: 0 1rem;
10-
}
11-
126
.fileGrid {
137
display: grid;
148
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
@@ -50,4 +44,4 @@
5044
font-size: 0.9rem;
5145
color: var(--ifm-color-emphasis-700);
5246
line-height: 1.4;
53-
}
47+
}

site/src/theme/Footer/Copyright/index.tsx

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

site/src/theme/Footer/LinkItem/index.tsx

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

site/src/theme/Footer/Links/MultiColumn/index.tsx

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

site/src/theme/Footer/Links/Simple/index.tsx

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

site/src/theme/Footer/Links/index.tsx

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

site/src/theme/Footer/Logo/index.tsx

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

site/src/theme/Footer/Logo/styles.module.css

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

0 commit comments

Comments
 (0)