jekyll-theme-satellite 1.1.2 → 1.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +16 -3
- data/_includes/footer.html +2 -3
- data/_includes/head.html +37 -8
- data/_includes/pagination.html +1 -1
- data/_includes/post.html +2 -2
- data/_includes/search_event.html +1 -2
- data/_includes/sidebar.html +6 -3
- data/_layouts/page.html +5 -6
- data/_sass/darkmode.scss +115 -122
- data/_sass/layout.scss +40 -40
- data/_sass/navigation.scss +133 -138
- data/_sass/pagination.scss +198 -211
- data/_sass/post.scss +550 -558
- data/_sass/search.scss +185 -204
- data/_sass/sidebar.scss +253 -254
- data/_sass/toc.scss +41 -41
- data/assets/css/404.scss +35 -35
- data/assets/css/highlight.min.css +2 -0
- data/assets/css/style.scss +22 -44
- data/assets/fonts/Lato-Regular.woff2 +0 -0
- data/assets/fonts/NunitoSans-Regular.woff2 +0 -0
- data/assets/fonts/Righteous-Regular.woff2 +0 -0
- data/assets/img/icon/house.webp +0 -0
- data/assets/img/loading.webp +0 -0
- data/assets/img/profile.webp +0 -0
- data/assets/js/background.js +1 -700
- data/assets/js/common.js +194 -21
- data/assets/js/post.js +172 -121
- data/assets/js/subject.js +1 -1
- metadata +22 -12
- data/assets/css/fonts.scss +0 -29
- data/assets/css/highlight-dark.min.css +0 -1
- data/assets/css/highlight-default.min.css +0 -1
- data/assets/fonts/Lato-Regular.ttf +0 -0
- data/assets/fonts/NunitoSans-Regular.ttf +0 -0
- data/assets/fonts/Righteous-Regular.ttf +0 -0
- data/assets/img/profile.jpg +0 -0
- data/assets/js/search.js +0 -168
- data/assets/js/sweet-scroll.min.js +0 -2
- data/assets/js/tocbot.min.js +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed3af2bd8fdbb4d034ce1a6197b31bb7fd849025bb9d67851817337484526e14
|
4
|
+
data.tar.gz: db045ddb62c8dcafb88def655fc99e0493e7f180f26bec2d1dc2e77e2d1ef382
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f04d0d13a909e8d31a4b41d64706f0d517252b7d1ca6aa9e4a7ea44a9e54357d6681e767c0b64872211d6d6809f39c7e71871418f998513b446a9306997c6d08
|
7
|
+
data.tar.gz: 2eaf0439be549aa6518b901fc765a61a7c775dc9b52e1cbe00d9a95e11e755a6db1eff31c55436c33c89ce7d2f21ca3de8558ea6c05d8dfb43b34322fc7d2760
|
data/README.md
CHANGED
@@ -4,7 +4,9 @@
|
|
4
4
|
[](gem)
|
5
5
|
|
6
6
|
# Satellite🛰️ - Jekyll blog theme
|
7
|
-
An emotional and adorable blog theme powered by ***Jekyll***.
|
7
|
+
An emotional and adorable blog theme powered by ***Jekyll***.
|
8
|
+
|
9
|
+
Live demo is available [here](https://byanko55.github.io)
|
8
10
|
|
9
11
|

|
10
12
|
|
@@ -20,6 +22,8 @@ An emotional and adorable blog theme powered by ***Jekyll***. Live demo is avail
|
|
20
22
|
<img src="https://i.ibb.co/WvyBzkL/Animation.gif" height="400px" align="center"/>
|
21
23
|
</p>
|
22
24
|
|
25
|
+
<br></br>
|
26
|
+
|
23
27
|
## Features
|
24
28
|
|
25
29
|
* Comment System using *giscus*
|
@@ -35,15 +39,18 @@ An emotional and adorable blog theme powered by ***Jekyll***. Live demo is avail
|
|
35
39
|
* Table of Contents
|
36
40
|
* Visitor Counter (*goatcounter*)
|
37
41
|
|
42
|
+
<br></br>
|
43
|
+
|
38
44
|
## Installation
|
39
45
|
|
40
46
|
There are two ways to setup this theme:
|
47
|
+
<br></br>
|
41
48
|
|
42
49
|
### Method 1: Build from source (Recommended)
|
43
|
-
Fork this repository or download the [source](https://github.com/byanko55/jekyll-theme-satellite/releases) as a zip.
|
50
|
+
Fork [this repository](https://github.com/byanko55/jekyll-theme-satellite) or download the [source](https://github.com/byanko55/jekyll-theme-satellite/releases) as a zip.
|
44
51
|
|
45
52
|
If you use as destination a repository named USERNAME.github.io, then your url will be https://USERNAME.github.io/.
|
46
|
-
|
53
|
+
<br></br>
|
47
54
|
|
48
55
|
### Method 2: Utilize Gem package
|
49
56
|
Create a clean site directory (Follow the **Instruction 1~4** described [here](https://jekyllrb.com/docs/)).
|
@@ -52,6 +59,7 @@ The following materials are redundant, so remove them.
|
|
52
59
|
* index.markdown
|
53
60
|
* about.markdown
|
54
61
|
* 404.html
|
62
|
+
<br></br>
|
55
63
|
|
56
64
|
Then, add this line to your Jekyll site's `Gemfile`:
|
57
65
|
|
@@ -60,6 +68,7 @@ gem "jekyll-theme-satellite"
|
|
60
68
|
```
|
61
69
|
|
62
70
|
You need to replace the initial `_config.yml` file with the [prepared one](https://github.com/byanko55/jekyll-theme-satellite/blob/master/docs/_config.yml).
|
71
|
+
<br></br>
|
63
72
|
|
64
73
|
### Modify your site setting
|
65
74
|
|
@@ -79,6 +88,7 @@ instagram_username: instagram
|
|
79
88
|
linkedin_username: linkedin
|
80
89
|
facebook_username: facebook
|
81
90
|
```
|
91
|
+
<br></br>
|
82
92
|
|
83
93
|
### Run site locally
|
84
94
|
|
@@ -87,6 +97,7 @@ From the site root directory, install the dependencies:
|
|
87
97
|
```
|
88
98
|
bundle install
|
89
99
|
```
|
100
|
+
<br></br>
|
90
101
|
|
91
102
|
Start a Jekyll service.
|
92
103
|
|
@@ -95,6 +106,7 @@ bundle exec jekyll serve
|
|
95
106
|
```
|
96
107
|
|
97
108
|
Now open [http://localhost:4000](http://localhost:4000) in your browser.
|
109
|
+
<br></br>
|
98
110
|
|
99
111
|
## Customizing
|
100
112
|
|
@@ -108,6 +120,7 @@ You can find useful manuals for customizing your site from the below table:
|
|
108
120
|
|
109
121
|
## Contribution
|
110
122
|
If you would like to report a bug or request a new feature, please open [an issue](https://github.com/byanko55/jekyll-theme-satellite/issues) We are open to any kind of feedback or collaboration.
|
123
|
+
<br></br>
|
111
124
|
|
112
125
|
## License
|
113
126
|
© 2024 *Yankos*. This theme is available as open source under the terms of the [MIT License](https://opensource.org/license/mit/).
|
data/_includes/footer.html
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
<script src="
|
2
|
-
<script src="{{
|
3
|
-
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
1
|
+
<script defer src="{{ '/assets/js/background.js' }}"></script>
|
2
|
+
<script defer src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
4
3
|
<script>
|
5
4
|
window.dataLayer = window.dataLayer || [];
|
6
5
|
function gtag(){ dataLayer.push(arguments); }
|
data/_includes/head.html
CHANGED
@@ -1,11 +1,46 @@
|
|
1
1
|
<meta charset="utf-8">
|
2
2
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
3
3
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
4
|
+
<title>
|
5
|
+
{% if page.url == "/index.html" %}
|
6
|
+
Home
|
7
|
+
{% elsif page_type == "category" %}
|
8
|
+
{{ category_title }}
|
9
|
+
{% else %}
|
10
|
+
{{ page.title }}
|
11
|
+
{% endif %}
|
12
|
+
</title>
|
4
13
|
{% seo %}
|
5
14
|
|
6
15
|
<link rel="shortcut icon" type="image/png" href="{{ site.logo_img }}">
|
7
|
-
<
|
8
|
-
|
16
|
+
<style>
|
17
|
+
@font-face {
|
18
|
+
font-family: 'Nunito Sans';
|
19
|
+
font-style: normal;
|
20
|
+
font-weight: 400;
|
21
|
+
font-display: optional;
|
22
|
+
src: local('Nunito Sans'),
|
23
|
+
url(/assets/fonts/NunitoSans-Regular.woff2) format("woff2");
|
24
|
+
}
|
25
|
+
|
26
|
+
@font-face {
|
27
|
+
font-family: 'Righteous';
|
28
|
+
font-style: normal;
|
29
|
+
font-weight: 600;
|
30
|
+
font-display: optional;
|
31
|
+
src: local('Righteous'),
|
32
|
+
url(/assets/fonts/Righteous-Regular.woff2) format("woff2");
|
33
|
+
}
|
34
|
+
|
35
|
+
@font-face {
|
36
|
+
font-family: 'Lato';
|
37
|
+
font-style: normal;
|
38
|
+
font-weight: 400;
|
39
|
+
font-display: optional;
|
40
|
+
src: local('Lato'),
|
41
|
+
url(/assets/fonts/Lato-Regular.woff2) format("woff2");
|
42
|
+
}
|
43
|
+
</style>
|
9
44
|
|
10
45
|
<script src="{{ '/assets/js/fontfaceobserver.js' }}" type="text/javascript"></script>
|
11
46
|
<script type="text/javascript">
|
@@ -22,12 +57,6 @@
|
|
22
57
|
});
|
23
58
|
</script>
|
24
59
|
|
25
|
-
<title>
|
26
|
-
{% if page.title %}{{ page.title }}
|
27
|
-
{% else %}{{ site.title }}
|
28
|
-
{% endif %}
|
29
|
-
</title>
|
30
|
-
|
31
60
|
<meta
|
32
61
|
name="description"
|
33
62
|
content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
data/_includes/pagination.html
CHANGED
data/_includes/post.html
CHANGED
@@ -33,7 +33,7 @@
|
|
33
33
|
<span id="page-hits" usercode="{{ site.goatcounter_code }}">-</span>
|
34
34
|
</span>
|
35
35
|
{% endif %}
|
36
|
-
<a class="info-box"
|
36
|
+
<a class="info-box" id="comments-counter">
|
37
37
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4l0 0 0 0 0 0 0 0 .3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z"/></svg>
|
38
38
|
<span id="num-comments">-</span>
|
39
39
|
</a>
|
@@ -61,5 +61,5 @@
|
|
61
61
|
</div>
|
62
62
|
</main>
|
63
63
|
<div class="top-arrow">
|
64
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"
|
64
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z"/></svg>
|
65
65
|
</div>
|
data/_includes/search_event.html
CHANGED
data/_includes/sidebar.html
CHANGED
@@ -1,7 +1,10 @@
|
|
1
1
|
<div class="sidebar sidebar-left">
|
2
2
|
<div class="side-banner">
|
3
|
-
<h1 class="site-
|
4
|
-
<a href="/"
|
3
|
+
<h1 class="site-tab">
|
4
|
+
<a href="/" class="site-name">
|
5
|
+
<img src="{{ '/assets/img/icon/house.webp' }}" alt="">
|
6
|
+
<mark>example.com</mark>
|
7
|
+
</a>
|
5
8
|
<button id="btn-brightness" aria-label="brightness-button">
|
6
9
|
<svg class='ico-dark' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path d="M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z"/></svg>
|
7
10
|
<svg class='ico-light' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391 371.1 498.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121 140.9 13.1c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1 346.3 2.8c4.5-3.1 10.2-3.7 15.2-1.6zM160 256a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zm224 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z"/></svg>
|
@@ -14,7 +17,7 @@
|
|
14
17
|
</button>
|
15
18
|
</h1>
|
16
19
|
<a href="/" class="site-avatar" aria-label="site-avatar">
|
17
|
-
<img src="{{
|
20
|
+
<img src="{{ site.profile_img }}" loading="lazy" alt="homepage" aria-label="homepage-button">
|
18
21
|
</a>
|
19
22
|
</div>
|
20
23
|
<div class="side-info">
|
data/_layouts/page.html
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
{%- assign page_level = page_tree.size -%}
|
5
5
|
{% if page_tree.last == "index.md" %}
|
6
6
|
{%- assign page_type = "category" -%}
|
7
|
+
{%- assign category_title = page.path | remove: 'index.md' | split: "/" | last -%}
|
7
8
|
{% else %}
|
8
9
|
{%- assign page_type = "post" -%}
|
9
10
|
{% endif %}
|
@@ -74,13 +75,11 @@
|
|
74
75
|
{% if page_type == "category" %}
|
75
76
|
<script src="{{ '/assets/js/subject.js' }}"></script>
|
76
77
|
{% else %}
|
77
|
-
<script src="{{ '/assets/js/tocbot.min.js' }}"></script>
|
78
|
-
<script src="{{ '/assets/js/sweet-scroll.min.js' }}"></script>
|
79
|
-
<script src="{{ '/assets/js/highlight.min.js' }}"></script>
|
80
|
-
<link id="highlight-default" rel="stylesheet" href="{{ '/assets/css/highlight-default.min.css' }}">
|
81
|
-
<link id="highlight-dark" rel="stylesheet" href="{{ '/assets/css/highlight-dark.min.css' }}">
|
82
78
|
<script src="{{ '/assets/js/post.js' }}"></script>
|
79
|
+
<link rel="preload" href="{{ '/assets/css/highlight.min.css' }}" as="style" onload="this.onload=null;this.rel='stylesheet'">
|
80
|
+
<noscript><link rel="stylesheet" href="{{ '/assets/css/highlight.min.css' }}"></noscript>
|
81
|
+
<script defer src="{{ '/assets/js/highlight.min.js' }}"></script>
|
83
82
|
{% endif %}
|
84
|
-
{% include search_event.html %}
|
85
83
|
<script src="{{ '/assets/js/common.js' }}"></script>
|
84
|
+
{% include search_event.html %}
|
86
85
|
</html>
|
data/_sass/darkmode.scss
CHANGED
@@ -1,211 +1,204 @@
|
|
1
1
|
body.dark-theme {
|
2
2
|
|
3
|
-
background
|
3
|
+
background:#1E1E1F;
|
4
4
|
|
5
|
-
a, span, p, h1, h2, h3, i, mark { color
|
5
|
+
a, span, p, h1, h2, h3, i, mark { color:#aaa; }
|
6
6
|
|
7
|
-
svg { fill
|
7
|
+
svg { fill:#aaa; }
|
8
8
|
|
9
|
-
#stars, #loading { background
|
9
|
+
#stars, #loading { background:#1E1E1F; }
|
10
10
|
|
11
|
-
#loading p { color:
|
11
|
+
#loading p { color:cadetblue; }
|
12
12
|
|
13
|
-
.sidebar-left { background-color
|
13
|
+
.sidebar-left { background-color:#313132; }
|
14
14
|
|
15
|
-
.nav-item span { color
|
15
|
+
.nav-item span { color:#ccc; }
|
16
16
|
|
17
|
-
.nav-lh svg { fill:
|
17
|
+
.nav-lh svg { fill:goldenrod; }
|
18
18
|
|
19
19
|
.nav-list-expander {
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
&:hover {
|
21
|
+
svg { fill:goldenrod; }
|
22
|
+
}
|
23
23
|
}
|
24
24
|
|
25
|
-
.nav-list li > .nav-list { background
|
25
|
+
.nav-list li > .nav-list { background:#464647; }
|
26
26
|
|
27
27
|
.side-banner {
|
28
|
-
|
28
|
+
box-shadow:0px 4px 8px 0 black;
|
29
29
|
|
30
|
-
|
31
|
-
|
30
|
+
button {
|
31
|
+
background-color:#313132;
|
32
32
|
|
33
|
-
|
34
|
-
|
33
|
+
&:hover { background-color:#1E1E1F; }
|
34
|
+
}
|
35
35
|
|
36
|
-
|
36
|
+
svg { fill:$color-aqua; }
|
37
37
|
}
|
38
38
|
|
39
39
|
#contact{
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
}
|
40
|
+
ul>li>a {
|
41
|
+
&:hover{
|
42
|
+
svg { fill:indianred; }
|
44
43
|
}
|
44
|
+
}
|
45
45
|
|
46
|
-
|
46
|
+
a { color:mediumseagreen; }
|
47
47
|
}
|
48
48
|
|
49
49
|
#post {
|
50
|
-
|
51
|
-
|
52
|
-
.inner-content { background: #313132; }
|
50
|
+
.inner-header { background:#464647; }
|
51
|
+
.inner-content { background:#313132; }
|
53
52
|
}
|
54
53
|
|
55
|
-
.transbox { background-color:
|
54
|
+
.transbox { background-color:rgba(64, 64, 64, 0.6); }
|
56
55
|
|
57
56
|
.post-title,
|
58
57
|
.info-box * {
|
59
|
-
|
60
|
-
|
61
|
-
|
58
|
+
color:#eee;
|
59
|
+
fill :#eee;
|
60
|
+
filter:drop-shadow(0 1px 2px rgba(0,0,0,0.6));
|
62
61
|
}
|
63
62
|
|
64
63
|
main {
|
65
|
-
|
66
|
-
|
67
|
-
strong { color: lightgrey; }
|
68
|
-
|
69
|
-
a {
|
70
|
-
color: dodgerblue;
|
71
|
-
|
72
|
-
&::before {
|
73
|
-
color: mediumseagreen;
|
74
|
-
text-decoration-color: mediumseagreen;
|
75
|
-
}
|
76
|
-
}
|
77
|
-
|
78
|
-
code,
|
79
|
-
.highlighter-rouge .highlight {
|
80
|
-
border: 1px solid dimgrey;
|
81
|
-
background-color: #363a41;
|
82
|
-
color: goldenrod;
|
83
|
-
}
|
84
|
-
|
85
|
-
blockquote {
|
86
|
-
background: #1E1E1F;
|
87
|
-
border-left: 4px solid #464647;
|
88
|
-
}
|
89
|
-
|
90
|
-
table { background-color: #464647; }
|
64
|
+
h1, h2, h3, p { color:#aaa; }
|
91
65
|
|
92
|
-
|
66
|
+
strong { color:lightgrey; }
|
93
67
|
|
94
|
-
|
68
|
+
a {
|
69
|
+
color:dodgerblue;
|
95
70
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
}
|
100
|
-
|
101
|
-
hr { background: cadetblue; }
|
102
|
-
|
103
|
-
img + em,
|
104
|
-
li {
|
105
|
-
color: #aaa;
|
71
|
+
&::before {
|
72
|
+
color:mediumseagreen;
|
73
|
+
text-decoration-color:mediumseagreen;
|
106
74
|
}
|
75
|
+
}
|
76
|
+
|
77
|
+
code,
|
78
|
+
.highlighter-rouge .highlight {
|
79
|
+
border:1px solid dimgrey;
|
80
|
+
background-color:#363a41;
|
81
|
+
color:goldenrod;
|
82
|
+
}
|
83
|
+
|
84
|
+
blockquote {
|
85
|
+
background:#1E1E1F;
|
86
|
+
border-left:4px solid #464647;
|
87
|
+
}
|
88
|
+
|
89
|
+
table { background-color:#464647; }
|
90
|
+
table, head { box-shadow:0 0 32px 0 rgba(128,128,128,.15); }
|
91
|
+
|
92
|
+
th, td { border:2px solid #3c3c3d; }
|
93
|
+
thead th,
|
94
|
+
tbody td {
|
95
|
+
color:#aaa;
|
96
|
+
}
|
97
|
+
|
98
|
+
hr { background:cadetblue; }
|
99
|
+
|
100
|
+
img + em,
|
101
|
+
li {
|
102
|
+
color:#aaa;
|
103
|
+
}
|
107
104
|
}
|
108
105
|
|
109
|
-
#related-box span { color:
|
110
|
-
|
111
|
-
#related-posts
|
106
|
+
#related-box span { color:darkgoldenrod; }
|
107
|
+
#related-posts .title { color:#ccc; }
|
108
|
+
#related-posts li:hover { box-shadow:8px 8px 16px -4px rgba(255, 255, 255, .2); }
|
112
109
|
|
113
|
-
|
114
|
-
|
115
|
-
.category-tree a { color: goldenrod; }
|
110
|
+
.category-tree a { color:goldenrod; }
|
116
111
|
|
117
112
|
.category-header {
|
118
|
-
|
119
|
-
|
113
|
+
color:cadetblue;
|
114
|
+
text-decoration:underline slategrey;
|
120
115
|
}
|
121
116
|
|
122
117
|
#article_content {
|
123
|
-
|
124
|
-
|
125
|
-
.box_contents { background-image: none; }
|
126
|
-
|
127
|
-
.txt_post { color: #aaa; }
|
128
|
-
|
129
|
-
.title_post { color: darkgoldenrod; }
|
118
|
+
border-bottom:2px solid #464647;
|
130
119
|
|
131
|
-
|
120
|
+
.box_contents { background-image:none; }
|
132
121
|
|
133
|
-
|
122
|
+
.txt_post { color:#aaa; }
|
123
|
+
.title_post { color:darkgoldenrod; }
|
124
|
+
.date { color:#ccc; }
|
125
|
+
.category { color:mediumseagreen; }
|
134
126
|
}
|
135
127
|
|
136
128
|
.pagination-number,
|
137
129
|
.pagination-button {
|
138
|
-
|
130
|
+
color:#ccc;
|
139
131
|
}
|
140
|
-
|
141
132
|
.pagination-number:hover,
|
142
133
|
.pagination-button:not(.disabled):hover {
|
143
|
-
|
134
|
+
background:grey;
|
144
135
|
}
|
145
136
|
|
146
137
|
#search {
|
147
|
-
|
138
|
+
background:rgba(64, 64, 64, 0.875);
|
148
139
|
|
149
|
-
|
150
|
-
|
151
|
-
|
140
|
+
ul {
|
141
|
+
border-bottom:2px solid #464647;
|
142
|
+
box-shadow:0px 4px 8px 0 #1E1E1F;
|
152
143
|
|
153
|
-
|
144
|
+
svg { background-color:#ccc; }
|
154
145
|
|
155
|
-
|
146
|
+
th { color:#ccc; }
|
156
147
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
}
|
148
|
+
&::-webkit-scrollbar {
|
149
|
+
width:8px;
|
150
|
+
background-color:grey;
|
161
151
|
}
|
152
|
+
}
|
162
153
|
|
163
|
-
|
154
|
+
input, input::placeholder { color:#ccc; }
|
164
155
|
}
|
165
156
|
|
166
|
-
.search-box h1 { color
|
157
|
+
.search-box h1 { color:#fff; }
|
167
158
|
|
168
159
|
.input-box {
|
169
|
-
|
170
|
-
|
171
|
-
&:after { opacity: 0.5; }
|
160
|
+
&:before { background:#5a5a5b; }
|
161
|
+
&:after { opacity:0.5; }
|
172
162
|
}
|
173
163
|
|
174
164
|
.result-item{
|
175
|
-
|
176
|
-
|
165
|
+
border:1px solid #464647;
|
166
|
+
background:#313132;
|
177
167
|
|
178
|
-
|
168
|
+
&:hover { background:$color-wenge; }
|
179
169
|
}
|
180
170
|
|
181
|
-
.toc-header { color:
|
171
|
+
.toc-header { color:darkgoldenrod; }
|
182
172
|
|
183
173
|
@include mq(tablet){
|
184
|
-
#article_content .box_contents { background-color: rgba(70, 70, 70, 0.95); }
|
185
174
|
|
186
|
-
|
175
|
+
#article_content .box_contents { background-color:rgba(70, 70, 70, 0.95); }
|
176
|
+
|
177
|
+
.post-title { text-shadow:0 1px 2px rgba(0,0,0,0.6); }
|
178
|
+
|
187
179
|
}
|
188
180
|
|
189
181
|
@include mq(desktop) {
|
190
|
-
.sidebar-left { background: none; }
|
191
182
|
|
192
|
-
|
183
|
+
.sidebar-left { background:none; }
|
193
184
|
|
194
|
-
|
195
|
-
&:before { background: rgba(#464647, 1); }
|
185
|
+
.site-tab { box-shadow:none; }
|
196
186
|
|
197
|
-
|
198
|
-
|
187
|
+
.nav-lh {
|
188
|
+
&:before { background:rgba(#464647, 1); }
|
189
|
+
&:hover:before { background:rgba(#464647, .75); }
|
190
|
+
}
|
199
191
|
|
200
|
-
|
192
|
+
.nav-list li > .nav-list { background:none; }
|
201
193
|
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
194
|
+
#contact{
|
195
|
+
hr { border-top:1px solid dimgrey; }
|
196
|
+
|
197
|
+
h3 { background-color:#1E1E1F; }
|
198
|
+
}
|
199
|
+
|
200
|
+
#post .inner-content { box-shadow:none; }
|
207
201
|
|
208
|
-
#post .inner-content { box-shadow: none; }
|
209
202
|
}
|
210
203
|
|
211
204
|
}
|