Skip to content

Commit

Permalink
feat: totally uncontroversial font change
Browse files Browse the repository at this point in the history
  • Loading branch information
hargoniX committed Nov 11, 2023
1 parent e859e2f commit 78e472a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions static/style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Open+Sans&family=Source+Code+Pro&family=Source+Code+Pro:wght@600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/lato-font/3.0.0/css/lato-font.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/juliamono/0.051/juliamono.css');

* {
box-sizing: border-box;
}

body {
font-family: 'Open Sans', sans-serif;
font-size: 17px;
font-variant-ligatures: none;
font-family: 'Lato Medium';
color: var(--text-color);
background: var(--body-bg);
}
Expand All @@ -15,7 +18,7 @@ a {
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Merriweather', serif;
font-family: 'Lato Medium';
}

body { line-height: 1.5; }
Expand Down Expand Up @@ -671,7 +674,8 @@ main h2, main h3, main h4, main h5, main h6 {

.imports li, code, .decl_header, .attributes, .structure_field_info,
.constructor, .instances li, .equation, .result_link, .structure_ext_ctor {
font-family: 'Source Code Pro', monospace;
font-size: 16px;
font-family: 'JuliaMono', monospace;
}

pre {
Expand Down Expand Up @@ -701,12 +705,12 @@ pre code { padding: 0 0; }

.inductive_ctor_doc {
text-indent: 2ex;
font-family: 'Open Sans', sans-serif;
font-family: 'Lato Medium';
}

.structure_field_doc {
text-indent: 0;
font-family: 'Open Sans', sans-serif;
font-family: 'Lato Medium';
}

.structure_ext_fields {
Expand Down

0 comments on commit 78e472a

Please sign in to comment.