Skip to content

Commit c68c456

Browse files
committed
Bumped up font sizes
Added 2px to the majority of font sizes used throughout the site as a few people noticed them to be a bit small. Signed-off-by: Paul Mabileau <paulmabileau@hotmail.fr>
1 parent 845dea2 commit c68c456

File tree

2 files changed

+67
-1
lines changed

2 files changed

+67
-1
lines changed

_sass/jekyll-theme-midnight.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
body {
66
padding:0px 0 20px 0px;
77
margin: 0px;
8-
font:14px/1.5 "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
8+
font-family: "OpenSansRegular", "Helvetica Neue", Helvetica, Arial, sans-serif;
9+
font-size: 14px;
910
color:#f0e7d5;
1011
font-weight: normal;
1112
background: #252525;

assets/css/style.scss

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,68 @@
22
---
33

44
@import "jekyll-theme-midnight";
5+
6+
7+
body { // Overrides Jekyll's style in _sass/jekyll[...].scss
8+
font-size: 16px; // Font sizes have been bumped up by 2px from
9+
} // the original style.
10+
11+
h1 {
12+
font-size: 30px;
13+
}
14+
15+
h2 {
16+
font-size: 26px;
17+
}
18+
19+
h3 {
20+
font-size: 20px;
21+
}
22+
23+
a small {
24+
font-size: 13px;
25+
}
26+
27+
code {
28+
font-size: 15px;
29+
}
30+
31+
32+
#header {
33+
nav {
34+
li {
35+
font-size: 16px;
36+
37+
a {
38+
font-size: 16px;
39+
}
40+
41+
&.title {
42+
font-size: 13px;
43+
}
44+
}
45+
}
46+
}
47+
48+
section {
49+
#title {
50+
h1 {
51+
font-size: 42px;
52+
}
53+
54+
p {
55+
font-size: 20px;
56+
}
57+
58+
.credits {
59+
font-size: 13px;
60+
}
61+
}
62+
}
63+
64+
65+
nav { // Overrides Bootstrap's style in bootstrap.in.css
66+
.navbar-brand { // For the top left "HackademINT" title,
67+
font-size: 24px; // the font-size has been augmented by 6px.
68+
}
69+
}

0 commit comments

Comments
 (0)