mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 19:56:41 +02:00
Fix missing comma in CSS font stack
* Should fix Firefox fonts error
This commit is contained in:
@@ -10,4 +10,7 @@ try {
|
|||||||
pageTracker._trackPageview();
|
pageTracker._trackPageview();
|
||||||
} catch(err) {}
|
} catch(err) {}
|
||||||
</script>
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
document.body.style.fontFamily = "'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif";
|
||||||
|
</script>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@@ -11,8 +11,8 @@
|
|||||||
@vspacing: @base-font-size*2;
|
@vspacing: @base-font-size*2;
|
||||||
|
|
||||||
@monospace-font-stack: ~"'Ubuntu Mono', 'Menlo', monospace";
|
@monospace-font-stack: ~"'Ubuntu Mono', 'Menlo', monospace";
|
||||||
@body-font-stack: ~"'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif";
|
@body-font-stack: ~"'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial', sans-serif";
|
||||||
@heading-font-stack: ~"'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif";
|
@heading-font-stack: ~"'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial', sans-serif";
|
||||||
@special-font-stack-1: ~"'Raleway', 'Helvetica Neue', 'Arial', sans-serif";
|
@special-font-stack-1: ~"'Raleway', 'Helvetica Neue', 'Arial', sans-serif";
|
||||||
|
|
||||||
@black: #333;
|
@black: #333;
|
||||||
|
@@ -47,7 +47,7 @@ body {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif;
|
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial', sans-serif;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
text-rendering: optimizeLegibility !important;
|
text-rendering: optimizeLegibility !important;
|
||||||
@@ -165,7 +165,7 @@ body {
|
|||||||
}
|
}
|
||||||
.section.header .name {
|
.section.header .name {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif;
|
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial', sans-serif;
|
||||||
letter-spacing: -0.005rem;
|
letter-spacing: -0.005rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
@@ -309,7 +309,7 @@ body {
|
|||||||
}
|
}
|
||||||
.section.main .content .page-heading {
|
.section.main .content .page-heading {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif;
|
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial', sans-serif;
|
||||||
letter-spacing: -0.005rem;
|
letter-spacing: -0.005rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
@@ -469,7 +469,7 @@ a {
|
|||||||
.section.main .content .markdown h5,
|
.section.main .content .markdown h5,
|
||||||
.section.main .content .markdown h6 {
|
.section.main .content .markdown h6 {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial' sans-serif;
|
font-family: 'ProximaNova', 'Source Sans Pro', 'Helvetica Neue', 'Arial', sans-serif;
|
||||||
letter-spacing: -0.005rem;
|
letter-spacing: -0.005rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
Reference in New Issue
Block a user