diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 16:01:51 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 16:04:30 +0300 |
commit | f8f58334e70d24e4f4acef78d0951565b92ea341 (patch) | |
tree | 4fdb72f825a677c483386ef0fe0f50dcf6cbb671 | |
parent | README: fix a typo (diff) | |
download | jekyll-theme-f8f58334e70d24e4f4acef78d0951565b92ea341.tar.gz jekyll-theme-f8f58334e70d24e4f4acef78d0951565b92ea341.zip |
css: move CSS files to jekyll-theme/
-rw-r--r-- | _includes/common/header.html | 2 | ||||
-rw-r--r-- | assets/css/jekyll-theme.css | 7 | ||||
-rw-r--r-- | assets/css/jekyll-theme/fix_bootstrap.css (renamed from assets/css/common/fix_bootstrap.css) | 0 | ||||
-rw-r--r-- | assets/css/jekyll-theme/footer.css (renamed from assets/css/common/footer.css) | 0 | ||||
-rw-r--r-- | assets/css/jekyll-theme/posts.css (renamed from assets/css/common/posts.css) | 0 | ||||
-rw-r--r-- | assets/css/jekyll-theme/shell.css (renamed from assets/css/shell.css) | 0 | ||||
-rw-r--r-- | assets/css/jekyll-theme/snippets.css (renamed from assets/css/snippets.css) | 0 | ||||
-rw-r--r-- | assets/css/jekyll-theme/syntax.css (renamed from assets/css/syntax.css) | 0 | ||||
-rw-r--r-- | assets/css/jekyll-theme/utils.css (renamed from assets/css/common/utils.css) | 0 | ||||
-rw-r--r-- | assets/css/main.css | 7 |
10 files changed, 8 insertions, 8 deletions
diff --git a/_includes/common/header.html b/_includes/common/header.html index 82c3801..6df985b 100644 --- a/_includes/common/header.html +++ b/_includes/common/header.html @@ -45,7 +45,7 @@ {% include common/mathjax.html %} - <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}"> + <link rel="stylesheet" href="{{ '/assets/css/jekyll-theme.css' | relative_url }}"> {% assign links = '' | split: '' %} {% if site.settings.links %} diff --git a/assets/css/jekyll-theme.css b/assets/css/jekyll-theme.css new file mode 100644 index 0000000..5491dcb --- /dev/null +++ b/assets/css/jekyll-theme.css @@ -0,0 +1,7 @@ +@import 'jekyll-theme/fix_bootstrap.css'; +@import 'jekyll-theme/footer.css'; +@import 'jekyll-theme/posts.css'; +@import 'jekyll-theme/shell.css'; +@import 'jekyll-theme/snippets.css'; +@import 'jekyll-theme/syntax.css'; +@import 'jekyll-theme/utils.css'; diff --git a/assets/css/common/fix_bootstrap.css b/assets/css/jekyll-theme/fix_bootstrap.css index 03100b3..03100b3 100644 --- a/assets/css/common/fix_bootstrap.css +++ b/assets/css/jekyll-theme/fix_bootstrap.css diff --git a/assets/css/common/footer.css b/assets/css/jekyll-theme/footer.css index 1e05c57..1e05c57 100644 --- a/assets/css/common/footer.css +++ b/assets/css/jekyll-theme/footer.css diff --git a/assets/css/common/posts.css b/assets/css/jekyll-theme/posts.css index d9ee811..d9ee811 100644 --- a/assets/css/common/posts.css +++ b/assets/css/jekyll-theme/posts.css diff --git a/assets/css/shell.css b/assets/css/jekyll-theme/shell.css index 6e8ddce..6e8ddce 100644 --- a/assets/css/shell.css +++ b/assets/css/jekyll-theme/shell.css diff --git a/assets/css/snippets.css b/assets/css/jekyll-theme/snippets.css index e442cd1..e442cd1 100644 --- a/assets/css/snippets.css +++ b/assets/css/jekyll-theme/snippets.css diff --git a/assets/css/syntax.css b/assets/css/jekyll-theme/syntax.css index 6eaa1dd..6eaa1dd 100644 --- a/assets/css/syntax.css +++ b/assets/css/jekyll-theme/syntax.css diff --git a/assets/css/common/utils.css b/assets/css/jekyll-theme/utils.css index 6f00df3..6f00df3 100644 --- a/assets/css/common/utils.css +++ b/assets/css/jekyll-theme/utils.css diff --git a/assets/css/main.css b/assets/css/main.css deleted file mode 100644 index b84b432..0000000 --- a/assets/css/main.css +++ /dev/null @@ -1,7 +0,0 @@ -@import 'common/fix_bootstrap.css'; -@import 'common/footer.css'; -@import 'common/posts.css'; -@import 'common/utils.css'; -@import 'shell.css'; -@import 'snippets.css'; -@import 'syntax.css'; |