Skip to content

Commit 8b17640

Browse files
authored
PODCAT-1631: Continue QA updates from PODCAT-1603 (#491)
* #8 increase font weight to 500 * #11 make all hyperlinked text to be Lato Medium (500) * glossary page * search result page
1 parent 170f50b commit 8b17640

File tree

15 files changed

+49
-13
lines changed

15 files changed

+49
-13
lines changed

public/css/fonts/Lato-Bold.ttf

642 KB
Binary file not shown.

public/css/fonts/Lato-Light.ttf

629 KB
Binary file not shown.

public/css/fonts/Lato-Medium.ttf

622 KB
Binary file not shown.

public/css/fonts/Lato-Regular.ttf

642 KB
Binary file not shown.

public/css/fonts/Lato-Semibold.ttf

654 KB
Binary file not shown.

public/css/fonts/Lato-Thin.ttf

613 KB
Binary file not shown.

public/css/index.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,34 @@
3131
font-family:"poppins";
3232
src:url(./fonts/Poppins-Bold.ttf);
3333
font-weight:700;
34+
}
35+
36+
@font-face {
37+
font-family:"Lato";
38+
src:url(./fonts/Lato-Light.ttf);
39+
font-weight:300;
40+
}
41+
42+
@font-face {
43+
font-family:"Lato";
44+
src:url(./fonts/Lato-Regular.ttf);
45+
font-weight:400;
46+
}
47+
48+
@font-face {
49+
font-family:"Lato";
50+
src:url(./fonts/Lato-Medium.ttf);
51+
font-weight:500;
52+
}
53+
54+
@font-face {
55+
font-family:"Lato";
56+
src:url(./fonts/Lato-SemiBold.ttf);
57+
font-weight:600;
58+
}
59+
60+
@font-face {
61+
font-family:"Lato";
62+
src:url(./fonts/Lato-Bold.ttf);
63+
font-weight:700;
3464
}

src/pages/aboutPage/aboutPage.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
.aboutContent1 a {
4747
/* color: rgb(0, 150, 255); */
4848
color: #00875E;
49-
font-weight: bold;
49+
font-weight: 500;
5050
text-underline-offset: 2px;
5151
}
5252
.aboutPageSection2Container {
@@ -79,7 +79,7 @@
7979
.aboutContent2 a {
8080
/* color: white; */
8181
color: #004187;
82-
font-weight: bold;
82+
font-weight: 500;
8383
text-underline-offset: 2px;
8484
}
8585
.aboutGrid{

src/pages/aboutPage/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const AboutContainer = styled.div`
99
// display: inline-flex;
1010
a[target="_blank"] {
1111
color: #00875E;
12-
font-weight: bold;
12+
font-weight: 500;
1313
text-underline-offset: 2px;
1414
background: url(${externalIcon}) right center no-repeat;
1515
padding-right: 30px;

src/pages/contributePage/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ const ContributeContainer = styled.div`
151151
.contributeContent1 a {
152152
/* color: rgb(0, 150, 255); */
153153
color: #00875E;
154-
font-weight: bold;
154+
font-weight: 500;
155155
text-underline-offset: 2px;
156156
}
157157
.contributeGrid{

0 commit comments

Comments
 (0)