Skip to content

Commit

Permalink
Merge pull request #289 from clermontech/font
Browse files Browse the repository at this point in the history
use Nanum font
  • Loading branch information
krichprollsch authored Sep 24, 2024
2 parents c7cdefd + 0b0ab40 commit 92e3c6b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
17 changes: 13 additions & 4 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -12459,6 +12459,15 @@ th.hide-for-touch {
Fonts.
*/
@font-face {
font-family: "Nanum";
src: url("../fonts/NanumGothic-Regular.ttf");
}
@font-face {
font-family: "Nanum Bold";
font-weight: bold;
src: url("../fonts/NanumGothic-Regular.ttf");
}
/*
Clermont'ech Planet
Expand All @@ -12478,7 +12487,7 @@ body {

/* line 17, ../scss/_page.scss */
h2, h1, .title-area strong, h3, h4, h5, h6 {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* line 21, ../scss/_page.scss */
Expand Down Expand Up @@ -12573,7 +12582,7 @@ img {
}
/* line 110, ../scss/_page.scss */
.top-bar-section li:not(.has-form) a {
font-family: "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
text-transform: uppercase;
font-weight: bold;
font-size: 1.0em;
Expand Down Expand Up @@ -12662,7 +12671,7 @@ footer p {

/* line 26, ../scss/_events.scss */
.summary {
font-family: "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 3em;
font-weight: bold;
margin-bottom: 0px;
Expand Down Expand Up @@ -12711,7 +12720,7 @@ footer p {
/* line 62, ../scss/_events.scss */
.event-date span.month {
font-size: 4em;
font-family: "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-family: "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: rgba(34, 34, 34, 0.8);
text-align: left;
line-height: 1em;
Expand Down
Binary file added fonts/NanumGothic-Bold.ttf
Binary file not shown.
Binary file added fonts/NanumGothic-ExtraBold.ttf
Binary file not shown.
Binary file added fonts/NanumGothic-Regular.ttf
Binary file not shown.
12 changes: 12 additions & 0 deletions scss/_fonts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,16 @@
Fonts.
*/

@font-face {
font-family: "Nanum";
src: url('../fonts/NanumGothic-Regular.ttf');
}

@font-face {
font-family: "Nanum Bold";
font-weight: bold;
src: url('../fonts/NanumGothic-Regular.ttf');
}

@import url(http://fonts.googleapis.com/css?family=Raleway:400,200,600);
2 changes: 1 addition & 1 deletion scss/_settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/


$title_font : "Neutraface Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
$title_font : "Nanum Bold", "Helvetica Neue", Helvetica, Arial, sans-serif;
$default_font : Raleway, "Helvetica Neue", Helvetica, Arial, sans-serif;
$text_color : #222;
$background_color : white;
Expand Down

0 comments on commit 92e3c6b

Please sign in to comment.