Skip to content

Commit 5c10849

Browse files
committedFeb 9, 2025
feat: update theme and style
1 parent 283269d commit 5c10849

File tree

3 files changed

+104
-24
lines changed

3 files changed

+104
-24
lines changed
 

‎content/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ framed = true
1010

1111
Welcome to my blog🎩 Check these
1212

13-
[💻 技术文章](/categories/%E6%8A%80%E6%9C%AF/) | [📖 My Readings](https://reading.colinx.one) | [💡 My Github](https://github.com/Colin-XKL/) | [💎 公开服务](/services/)
13+
[💻 技术文章](/categories/%E6%8A%80%E6%9C%AF/) | [💡 My Github](https://github.com/Colin-XKL/) | [💎 公开服务&个人作品](/services/)

‎layouts/shortcodes/service_list.html

+62-14
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,71 @@
88
{{ with $.Get "name" }}
99
{{ $name := . }}
1010
{{ $data := getJSON $url }}
11-
{{ range $data.data }}
12-
{{ $item := . }}
13-
14-
<h3 id="{{$item.name}}">{{$item.name}}</h3>
15-
{{ $link := urls.Parse $item.link }}
16-
<p>{{$item.type}} - {{$item.subtitle}}</p>
17-
<p>地址:
11+
12+
{{ range $data.data }}
13+
{{ $item := . }}
14+
<div class="card">
15+
<h3 id="{{$item.name}}">{{$item.name}} <span class="badge">{{$item.type}}</span></h3>
16+
<p>{{$item.subtitle}}</p>
17+
<p><strong>地址:</strong>
18+
{{ $link := urls.Parse $item.link }}
1819
{{ if (gt (len $link.Host) 1) }}
19-
<a href="{{$item.link}}" >{{$link.Host}}</a>
20+
<a href="{{$item.link}}">{{$link.Host}}</a>
2021
{{ else }}
2122
{{$item.link}}
2223
{{ end }}
23-
</p>
24-
{{ if (gt (len $item.StartServingAt) 1) }}
25-
<p>上线于{{$item.StartServingAt}}</p>
26-
{{ end }}
27-
28-
{{ end }}
24+
</p>
25+
<p><strong>上线时间:</strong>
26+
{{ if (gt (len $item.StartServingAt) 1) }}
27+
{{$item.StartServingAt}}
28+
{{ else }}
29+
30+
{{ end }}
31+
</p>
32+
</div>
33+
{{ end }}
2934
{{ end }}
35+
<style>
36+
:root {
37+
--card-border: #cccccc51;
38+
--badge-background: #9dd5c0;
39+
--badge-color: white;
40+
}
41+
42+
[data-theme='dark'] {
43+
--card-border: #44444451;
44+
--badge-background: #9dd5c0;
45+
--badge-color: white;
46+
}
47+
.card {
48+
border: 1px solid var(--card-border);
49+
border-radius: 8px;
50+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
51+
margin: 1rem;
52+
padding: 2rem;
53+
transition: transform 0.2s ease-in-out;
54+
}
55+
.card:hover {
56+
transform: scale(1.02);
57+
}
58+
.card h3 {
59+
margin: 0;
60+
display: inline-flex;
61+
align-items: center;
62+
}
63+
.card p {
64+
margin: 5px 0;
65+
}
66+
.card a {
67+
text-decoration: none;
68+
}
69+
.badge {
70+
background-color: #9dd5c0;
71+
color: white;
72+
border-radius: 12px;
73+
padding: 4px 8px;
74+
font-size: 0.6em;
75+
margin-left: 8px;
76+
}
77+
</style>
3078
{{ end }}

‎static/style.css

+41-9
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
padding: 1rem 0rem;
4040
}
4141

42-
ol.toc-list > li > a:hover {
42+
ol.toc-list>li>a:hover {
4343
text-underline-position: under;
4444
font-weight: bolder;
4545
}
@@ -57,45 +57,47 @@ ol.toc-list > li > a:hover {
5757
}
5858

5959
.is-active-link::before {
60-
background-color: #d71a1b !important;
60+
background-color: #9dd5c0 !important;
6161
}
6262

6363
.logo__cursor {
64-
background: #d71a1b;
64+
background: #9dd5c0;
6565
}
6666

6767
/* 超链接样式 */
6868

6969
.post-tags a,
70-
.post-content a {
70+
.post-content a,
71+
.index-content a {
7172
text-decoration: none;
72-
border-bottom: 1px dashed #d71a1b;
73+
border-bottom: 1px dashed #9dd5c0;
7374
-webkit-transition: all 0.2s;
7475
transition: all 0.2s;
7576
}
7677

7778
.post-tags a:hover,
7879
.post-content a:hover,
80+
.index-content a:hover,
7981
nav a:hover {
8082
text-decoration: none;
81-
border-bottom: 2px solid #d71a1b;
83+
border-bottom: 2px solid #9dd5c0;
8284
-webkit-transition: all 0.1s ease;
8385
transition: all 0.1s ease;
8486
}
8587

8688
/* custom ::selection */
8789
::selection {
88-
background: #b5b5b5;
90+
background: #9dd5c0;
8991
color: #fff;
9092
}
9193

9294
::-moz-selection {
93-
background: #b5b5b5;
95+
background: #9dd5c0;
9496
color: #fff;
9597
}
9698

9799
::-webkit-selection {
98-
background: #b5b5b5;
100+
background: #9dd5c0;
99101
color: #fff;
100102
}
101103

@@ -116,3 +118,33 @@ nav a:hover {
116118
.post-content a:active {
117119
background-size: 80% 100%;
118120
} */
121+
122+
.logo__cursor {
123+
background-color: #9dd5c0 !important;
124+
}
125+
126+
.on-list .post-title:hover {
127+
transform: translateY(-0.1rem);
128+
-webkit-transition: all 0.1s ease-in-out;
129+
transition: all 0.1s ease-in-out;
130+
}
131+
132+
.read-more:hover {
133+
transform: translateX(0.1rem);
134+
-webkit-transition: all 0.1s ease-in-out;
135+
transition: all 0.1s ease-in-out;
136+
}
137+
138+
span.button.next:hover {
139+
display: block;
140+
transform: translateX(0.2rem);
141+
-webkit-transition: all 0.1s ease-in-out;
142+
transition: all 0.21s ease-in-out;
143+
}
144+
145+
span.button.previous:hover {
146+
display: block;
147+
transform: translateX(-0.2rem);
148+
-webkit-transition: all 0.1s ease-in-out;
149+
transition: all 0.1s ease-in-out;
150+
}

0 commit comments

Comments
 (0)
Please sign in to comment.