Skip to content

Commit

Permalink
修复一些问题
Browse files Browse the repository at this point in the history
修复了a链接过于突出
修复了样式冲突问题
把字体调小了一点
改变了DPlayer的插入逻辑
  • Loading branch information
youranreus committed Mar 7, 2020
1 parent 5d21474 commit 4429ccc
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 308 deletions.
80 changes: 50 additions & 30 deletions CSS/G.css
Expand Up @@ -455,7 +455,7 @@ div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-tool
display: inline-block;
z-index: 2;
}
.article-category-link,.article-date{
.article-category-link,.article-date,.article-picnum{
color:white;
border-radius: 20px;
padding: 4px 8px;
Expand All @@ -474,6 +474,11 @@ div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-tool
background-color: #fff;
text-shadow: none;
}
.card-item article:hover .article-picnum{
color: #000;
background-color: #fff;
text-shadow: none;
}
/**
* page
*/
Expand Down Expand Up @@ -659,16 +664,16 @@ div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-tool
border-bottom: 1.5px solid RGB(48,71,88);
}
#post-content-article h1 {
font-size: 1.6rem;
font-size: 1.3rem;
}
#post-content-article h2 {
font-size: 1.5rem;
font-size: 1.2rem;
}
#post-content-article h3 {
font-size: 1.4rem;
font-size: 1.13rem;
}
#post-content-article h4 {
font-size: 1.3rem;
font-size: 1rem;
}
#post-content img {
display: block;
Expand Down Expand Up @@ -707,9 +712,7 @@ div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-tool
font-size: 17px;
letter-spacing: .6px;
}
.aplayer .aplayer-lrc p{
font-size: 12px!important;
}

#post-content-article li {
margin: 10px auto;
padding: 0;
Expand Down Expand Up @@ -745,9 +748,20 @@ div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-tool
width: 36px;
height: 40px;
}
#post-content a ,#page-content a,#links-post a{
color: #07f;
display:block;
overflow:hidden;
word-break:keep-all;
white-space:nowrap;
text-overflow:ellipsis;
}
.aplayer{
box-shadow: none!important;
}
.aplayer .aplayer-lrc p{
font-size: 12px!important;
}
.dplayer{
height:394px;
}
Expand All @@ -756,6 +770,16 @@ div.code-toolbar > .toolbar a, div.code-toolbar > .toolbar button, div.code-tool
width: 100%;
margin:10px 0px;
}
#post-content img {
display: block;
margin: 20px auto;
text-align: center;
border-radius: 15px;
width: 100% \9;
max-width: 90%;
max-height: 500px;
height: auto;
}
#feedme{
display: inline-block;
margin:10px auto;
Expand Down Expand Up @@ -1749,8 +1773,9 @@ background : hsla(0,0%,100%,.6);
margin-left: 0px;
width: 70%;
}
#nav-2 a{
margin-right:5px;

.article-item h2 span {
font-size: 1.5rem;
}
.card-item article{
height:140px;
Expand All @@ -1760,7 +1785,7 @@ background : hsla(0,0%,100%,.6);
bottom:19;
font-size: 1.25rem;
}
.article-category-link,.article-date{
.article-category-link,.article-date,.article-picnum{
font-size:0.975rem;
}
#footer-search input.text {
Expand Down Expand Up @@ -1821,10 +1846,15 @@ background : hsla(0,0%,100%,.6);
}
#nav-2{
max-width: 100%;
margin:0;
}
#nav-2::-webkit-scrollbar,#footer-time::-webkit-scrollbar{
display: none;
}
#nav-2 a {
font-size: 0.875rem;
margin-right:5px;
}
#zp-content p {
font-size: 1rem;
}
Expand All @@ -1842,7 +1872,15 @@ background : hsla(0,0%,100%,.6);
padding: 24px;
}
#footer-content-left p {
font-size: 1.1rem;
font-size: 0.875rem;
margin: 0 0 3px 0px;
}
#footer-content-left p a {
font-size: 0.875rem;
}
#footer-content-right p{
margin: 0px 0 -5px 0;
height: 35px;
}
#footer-content-right img {
height: 35px;
Expand Down Expand Up @@ -2045,24 +2083,6 @@ input#url, input#mail, input#author {
opacity: 0
}
}
#post-content a {
position: relative;
color: #07f;
}
#post-content a::after {
content: "";
position: absolute;
left: 100%;
bottom: -2px;
width: 0;
border-bottom: 1px solid #07F;
transition: width 0.3s, left 0.3s;
}
#post-content a:hover::after {
left: 0;
width: 100%;
transition: width 0.3s;
}

.hoverup {
-webkit-transition: .3s ease all;
Expand Down
19 changes: 12 additions & 7 deletions CSS/shortcode.G.css
Expand Up @@ -12,21 +12,26 @@
margin: 10px auto;
}
.ArtinArt h4{
margin:0;
border: none;
font-size: 1.5rem!important;
margin:0!important;
border: none!important;
}
.ArtinArt h4:hover{
letter-spacing: normal!important;
border: none!important;
}
.ArtinArt h4 a::after{
display: none;
}
.ArtinArt h4 a:hover{
color:#07f!important;
background: rgba(255,255,255,0)!important;
}
.ArtinArt p {
margin-top:5px!important;
margin-bottom: 0;
color:hsla(0,0%,100%,.6);
margin-bottom: 0!important;
}

.post-download{

}
.post-download a{
border: 1px solid #666;
padding: 0.7rem 2rem;
Expand Down

0 comments on commit 4429ccc

Please sign in to comment.