Skip to content

Commit

Permalink
为PSgameSpider提供样式支持
Browse files Browse the repository at this point in the history
  • Loading branch information
RavelloH committed Feb 20, 2024
1 parent 9034c7a commit 3d9daa4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 3 deletions.
34 changes: 31 additions & 3 deletions origin/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2620,7 +2620,8 @@ code {
background-color: #333333;
}
#feed-list,
#uptime-list {
#uptime-list,
.flex-list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
Expand All @@ -2637,10 +2638,12 @@ code {
#feed-list a,
#mail-feed,
#uptime-list a,
.flex-list a,
#articles-sort span:active,
#feed-list a:active,
#mail-feed:active,
#uptime-list a:hover {
#uptime-list a:hover,
.flex-list a:hover {
width: 45%;
font-size: 1.2em;
background-color: var(--theme-gray);
Expand All @@ -2655,7 +2658,8 @@ code {
}

#feed-list a,
#uptime-list a {
#uptime-list a,
.flex-list a{
width: 30%;
}

Expand Down Expand Up @@ -3257,4 +3261,28 @@ kdb {
#sidebar {
padding: 2rem 15px 2rem 15px;
}
}

.square-img-box {
max-width: 10em;
margin: 1em;
}


.square-img-box-img img {
border-radius: 1em;
transition: 0.4s;
}

.square-img-box-img img:hover {
transform: scale(1.1);
}


.square-img-box-name {
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
color: var(--theme-white-light);
}
3 changes: 3 additions & 0 deletions program/dev.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const RBuild = require('render-build');

RBuild.dev('./')

0 comments on commit 3d9daa4

Please sign in to comment.