-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from lowcodelounge/local-css
Numerous updates
- Loading branch information
Showing
13 changed files
with
105 additions
and
721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!doctype html> | ||
<html lang="{{site.lang}}"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>{{ site.title }}</title> | ||
<meta name="description" content="{{ site.description }}"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<link rel="icon" href="favicon.ico" sizes="any"> | ||
|
||
<link rel="stylesheet" href="https://unpkg.com/@primer/css/dist/primer.css"> | ||
<link rel="stylesheet" href="assets/css/custom.css"> | ||
</head> | ||
|
||
<body class="{% if page.body-style %}{{ page.body-style }}{% else %}p-3{% endif %}"> | ||
<main class="{% if page.main-style %}{{ page.main-style }}{% else %}container-md markdown-body{% endif %}"> | ||
{{ content }} | ||
</main> | ||
<script src="assets/js/main.js"></script> | ||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
main { | ||
font-size: 125% !important; | ||
} | ||
/* Add CSS rules to override Primer */ |
Oops, something went wrong.