Skip to content

Commit

Permalink
link lato from google fonts (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
npup authored Nov 10, 2023
1 parent f572934 commit 1fbdea0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion dist/css-to-go.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "https://fonts.googleapis.com/css?family=Lato:400,700";
.ctg-root {
--color-GREEN: #171;
--color-LIGHT_GREEN: #8f8;
Expand Down Expand Up @@ -35,7 +36,7 @@
--bordercolor-blockquote: var(--color-GRAY_LIGHT);
--color-note: var(--color-text-main);
--bgcolor-note: var(--color-row--hover);
--font-main: Lato, Avenir, Sans serif;
--font-main: Lato, Avenir, Arial, Sans serif;
--font-formatted-numerical: Courier, Monospace, Sans serif;
--font-formatted-date: Courier, Monospace, Sans serif;
--transition--color: color 0.125s ease-in;
Expand Down
2 changes: 1 addition & 1 deletion dist/css-to-go.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS To Go - Example pages</title>
<link rel="stylesheet" href="/_astro/index.f5a72e04.css" /></head>
<link rel="stylesheet" href="/_astro/index.a54dcbde.css" /></head>
<body class="ctg-root ctg-container ctg-theme--dark">

<h1 id="top">CSS To Go - examples</h1>
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/theme-light/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS To Go - Example pages</title>
<link rel="stylesheet" href="/_astro/index.f5a72e04.css" /></head>
<link rel="stylesheet" href="/_astro/index.a54dcbde.css" /></head>
<body class="ctg-root ctg-container ctg-theme--light">

<h1 id="top">CSS To Go - examples</h1>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS To Go - Example pages</title>
<link rel="stylesheet" href="/_astro/index.f5a72e04.css" /></head>
<link rel="stylesheet" href="/_astro/index.a54dcbde.css" /></head>
<body class=" ctg-container ctg-theme--dark">

<h1>CSS To Go</h1>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "css-to-go",
"type": "module",
"version": "1.8.0",
"version": "1.9.0",
"description": "A bit of global CSS to help shape up the looks of a plain HTML document. Has a dark mode and a light mode.",
"author": "P.Envall <[email protected]>",
"homepage": "https://npup.github.io/css-to-go",
Expand Down
3 changes: 3 additions & 0 deletions src/styles/_variables.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* Because we are using Lato below */
@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

.ctg-root {
/** base colors */

Expand Down

0 comments on commit 1fbdea0

Please sign in to comment.