Skip to content

Commit f324a65

Browse files
change font + size
1 parent 5e42abd commit f324a65

2 files changed

Lines changed: 22 additions & 10 deletions

File tree

_sass/_base.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
html{
2-
zoom: 100%;
3-
font-size: 24px;
2+
font-size: 26px;
43
}
54

65
.badge {

_sass/main.scss

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
@charset "utf-8";
22

3-
// Custom Fonts
4-
@import url('https://fonts.googleapis.com/css?family=Roboto');
5-
63
// Import partials from `sass_dir` (defaults to `_sass`)
74
@import "variables",
85
"404",
@@ -22,8 +19,24 @@ a {
2219
text-decoration: none; /* Optional: removes underline */
2320
}
2421

25-
/* Link color on hover */
26-
a:hover {
27-
color: #004088;
28-
text-decoration: none; /* Optional: removes underline */
29-
}
22+
/* Link color on hover */
23+
a:hover {
24+
color: #004088;
25+
text-decoration: none; /* Optional: removes underline */
26+
}
27+
28+
body {
29+
font-family: 'Segoe UI Emoji', 'Segoe UI Symbol', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
30+
}
31+
32+
.container {
33+
@media (min-width: 1200px) {
34+
max-width: 75%;
35+
}
36+
@media (max-width: 1199px) {
37+
max-width: 90%; // More width on medium screens
38+
}
39+
@media (max-width: 768px) {
40+
max-width: 95%; // Almost full width on mobile
41+
}
42+
}

0 commit comments

Comments
 (0)