From dfecb2a2add5d605915e7dd88ec14e8cf16ca4ed Mon Sep 17 00:00:00 2001 From: gedeck Date: Wed, 13 Dec 2023 17:25:29 -0500 Subject: [PATCH] Update style (#59) * Create style.scss * Create default.html --- _layouts/default.html | 60 +++++++++++++++++++++++++++++++++++++++++++ assets/css/style.scss | 16 ++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 _layouts/default.html create mode 100644 assets/css/style.scss diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..9576e5f --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,60 @@ + + + + + + + + + + + {% seo %} + {% include head-custom.html %} + + + + + +
+
+ {% if site.github.is_project_page %} + View on GitHub + {% endif %} + +

{{ site.title | default: site.github.repository_name }}

+

{{ site.description | default: site.github.project_tagline }}

+ + {% if site.show_downloads %} +
+ Download this project as a .zip file + Download this project as a tar.gz file +
+ {% endif %} +
+
+ + +
+
+ {{ content }} +
+
+ + + + + diff --git a/assets/css/style.scss b/assets/css/style.scss new file mode 100644 index 0000000..f227fce --- /dev/null +++ b/assets/css/style.scss @@ -0,0 +1,16 @@ +--- +--- +@import "{{ site.theme }}"; + +table { + border: 0px; +} + +td { + border: 0px; + vertical-align: top; +} + +.inner { + max-width: 800px; +}