Skip to content

Commit e23864e

Browse files
authoredNov 27, 2024
一点点细节更新
1 parent bd79722 commit e23864e

File tree

3 files changed

+27
-13
lines changed

3 files changed

+27
-13
lines changed
 

‎css/Q-style.css

+20-7
Original file line numberDiff line numberDiff line change
@@ -1355,22 +1355,35 @@ hr {
13551355
border-style: none;
13561356
background-color: rgb(248, 243, 233);
13571357
}
1358-
1358+
.post-tags a{
1359+
background: whitesmoke;
1360+
font-size: 12px !important;
1361+
padding: 3px;
1362+
border-radius: 0.5rem !important;
1363+
border-bottom: none !important;
1364+
color: #354b60 !important;
1365+
}
1366+
.post-tags{
1367+
border-top: 2px dashed #aaacb6;
1368+
padding-top: 10px;
1369+
display: flex;
1370+
flex-direction: row;
1371+
flex-wrap: nowrap;
1372+
justify-content: flex-end;
1373+
}
13591374
.talk-content-talk .text {
13601375
padding: 10px 10px 10px 10px; */
13611376
font-size: 1rem;
13621377

13631378
height: 10rem;
13641379
font-family: 'MiSans','Noto Serif SC', serif;
1365-
box-shadow: 0 5px 8px rgb(29 35 54 / 21%), 0 0 2px rgb(0 0 0 / 0%);
1366-
13671380

13681381
border-width: 0.5px;
1369-
outline: 0;
1382+
outline: 1px solid #354b6042;
13701383
width: 100%;
13711384
border-color: #b0b0b000;
13721385
border-radius: 0.3rem;
1373-
background: #f1f1f1;
1386+
background: #f5f5f5ba;
13741387
resize: none;
13751388
padding: 1rem;
13761389

@@ -1437,11 +1450,11 @@ font-size: 1rem;
14371450
display: block;
14381451
width: 100%;
14391452
margin-top: -4.5rem;
1440-
border: 3px solid #ebf0ff;
1441-
box-shadow: 0 5px 8px rgb(29 35 54 / 21%), 0 0 2px rgb(0 0 0 / 0%);
14421453
margin-bottom: 20px;
14431454
color: #464750;
14441455
font-size: 1.28rem;
1456+
border-radius: 1rem;
1457+
outline: 1px solid #354b6042;
14451458
}
14461459
.talk-list li {
14471460
list-style: none;

‎css/nprogress.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
ny/* Make clicks pass-through */
1+
22
#nprogress {
33
pointer-events: none;
44
}
55

66
#nprogress .bar {
77
/*background: #29d;*/
8-
background: linear-gradient(64deg, #71c2f1, #c75050, #e73c7ee7);
8+
background: linear-gradient(64deg, #71c2f1, #2ec4b8, #37e9b3e7);
99
position: fixed;
1010
z-index: 1031;
1111
top: 0;
@@ -22,7 +22,7 @@ ny/* Make clicks pass-through */
2222
right: 0px;
2323
width: 100px;
2424
height: 100%;
25-
box-shadow: 0 0 10px #9063fd, 0 0 5px #dd229c;
25+
box-shadow: 0 0 10px #082b58, 0 0 5px #2f0ee9;
2626
opacity: 1.0;
2727

2828
-webkit-transform: rotate(3deg) translate(0px, -4px);
@@ -45,8 +45,8 @@ ny/* Make clicks pass-through */
4545
box-sizing: border-box;
4646

4747
border: solid 2px transparent;
48-
border-top-color: #9011f6;
49-
border-left-color: #cf29f1;
48+
border-top-color: #2a70cc;
49+
border-left-color: #2997f1;
5050
border-radius: 50%;
5151

5252
-webkit-animation: nprogress-spinner 400ms linear infinite;
@@ -65,7 +65,7 @@ ny/* Make clicks pass-through */
6565

6666
@-webkit-keyframes nprogress-spinner {
6767
0% { -webkit-transform: rotate(0deg); }
68-
100% { -webkit-transform: rotate(360deg); }
68+
100% { -webkit-transform: rotate(260deg); }
6969
}
7070
@keyframes nprogress-spinner {
7171
0% { transform: rotate(0deg); }

‎post.php

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<?php $this->content(); ?>
3434

3535
<script >hljs.initHighlightingOnLoad();</script>
36+
<div class="post-tags"> <?php $this->tags('&nbsp', true, '该文章无TAG'); ?></div>
3637
</div>
3738

3839
</div> <?php $this->need('comments.php'); ?>

0 commit comments

Comments
 (0)
Please sign in to comment.