This commit is contained in:
Van 2019-08-02 22:16:31 +08:00
parent 1f94084f11
commit 64085edc97
No known key found for this signature in database
GPG Key ID: 7059B8783A78F16C
54 changed files with 482 additions and 144 deletions

View File

@ -32,7 +32,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h1> </h1>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 1.2.0.0, Jul 17, 2019 * @version 1.3.0.0, Aug 2, 2019
*/ */
/* start common */ /* start common */
@import "../../../scss/reset"; @import "../../../scss/reset";
@ -549,15 +549,27 @@ aside {
margin-bottom: 10px; margin-bottom: 10px;
} }
.post h1 a { .post h1 > a {
font-size: 24px; font-size: 24px;
font-weight: 500; font-weight: 500;
text-decoration: none; text-decoration: none;
} }
.post sup,
.post sup { .post sup {
color: #aaa; color: #aaa;
font-weight: 300; font-weight: 300;
a {
color: #aaa;
cursor: text;
&:hover {
color: #aaa;
}
&:visited {
color: #fff;
}
}
} }
.post .meta { .post .meta {

View File

@ -29,16 +29,18 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}" title="${tags1Label}${article.articleTags}"> <a rel="bookmark" href="${servePath}${article.articlePermalink}" title="${tags1Label}${article.articleTags}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated>
<sup>
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop> <#if article.articlePutTop>
<sup> <sup>
${topArticleLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.hasUpdated>
<sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h2> </h2>
<div class="article-date"> <div class="article-date">
<#if article.hasUpdated> <#if article.hasUpdated>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin andrea style * skin andrea style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.3.0.0, Jul 17, 2019 * @version 2.4.0.0, Aug 2, 2019
*/ */
@import "../../../scss/toc"; @import "../../../scss/toc";
@import "vditor/src/assets/scss/classic"; @import "vditor/src/assets/scss/classic";
@ -190,7 +190,7 @@ img {
/* main */ /* main */
.main-content { .main-content {
padding: 0 45px; padding: 0 45px;
background-color: #D4D4D4; background-color: #d9d7d4;
} }
.main-content > h2 { .main-content > h2 {
@ -268,14 +268,14 @@ img {
*line-height: 28px; *line-height: 28px;
} }
.article h2 a { .article h2 > a {
color: #363636; color: #363636;
font-size: 24px; font-size: 24px;
line-height: 24px; line-height: 24px;
text-decoration: none; text-decoration: none;
} }
.article h2 a:hover { .article h2 > a:hover {
color: #BE0700; color: #BE0700;
text-decoration: underline; text-decoration: underline;
} }
@ -284,6 +284,17 @@ img {
color: #BE0700; color: #BE0700;
font-size: 10px; font-size: 10px;
vertical-align: top; vertical-align: top;
a {
text-decoration: none;
cursor: text;
vertical-align: top;
&:hover {
color: #BE0700;
}
&:visited {
color: #d9d7d4;
}
}
} }
.article-abstract { .article-abstract {
@ -544,6 +555,7 @@ img {
/* article */ /* article */
.vditor-reset--article { .vditor-reset--article {
padding-bottom: 20px; padding-bottom: 20px;
margin-top: 20px;
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; display: none;
@ -681,7 +693,7 @@ h2.comment-label {
#tagsPanel a { #tagsPanel a {
display: block; display: block;
float: left; float: left;
border: 1px solid #D4D4D4; border: 1px solid #d9d7d4;
} }
#tagsPanel a:hover { #tagsPanel a:hover {

View File

@ -31,7 +31,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.3.0.0, Jul 17, 2019 * @version 0.4.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/usite"; @import "../../../scss/usite";
@ -518,7 +518,7 @@ a {
} }
&__title { &__title {
a { & > a {
color: $black; color: $black;
font-size: 24px; font-size: 24px;
line-height: 24px; line-height: 24px;
@ -533,6 +533,19 @@ a {
font-size: 12px; font-size: 12px;
font-weight: normal; font-weight: normal;
color: rgba($gray, 0.8); color: rgba($gray, 0.8);
a {
color: rgba($gray, 0.8);
cursor: text;
&:hover {
text-decoration: none;
}
&:visited {
color: #fff;
}
}
} }
} }

View File

@ -47,7 +47,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.2.0.0, Jul 17, 2019 * @version 0.3.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/usite"; @import "../../../scss/usite";
@ -49,6 +49,7 @@ a {
.ft__a { .ft__a {
color: $gray; color: $gray;
&:hover { &:hover {
color: rgba($gray, .8); color: rgba($gray, .8);
} }
@ -63,6 +64,7 @@ a {
.header { .header {
color: #fff; color: #fff;
position: relative; position: relative;
&--index { &--index {
&:before { &:before {
content: ""; content: "";
@ -75,22 +77,28 @@ a {
filter: brightness(48%); filter: brightness(48%);
} }
} }
&--article { &--article {
background-color: $black-bg; background-color: $black-bg;
height: 64px; height: 64px;
.header__title { .header__title {
display: none; display: none;
} }
.header__nav a { .header__nav a {
margin-bottom: 0; margin-bottom: 0;
line-height: 64px; line-height: 64px;
} }
} }
&--other { &--other {
height: 407px; height: 407px;
.header__title { .header__title {
display: none; display: none;
} }
&:before { &:before {
content: ""; content: "";
height: 100%; height: 100%;
@ -101,32 +109,39 @@ a {
background-size: cover; background-size: cover;
filter: brightness(48%); filter: brightness(48%);
} }
.header__nav a { .header__nav a {
margin-bottom: 0; margin-bottom: 0;
line-height: 64px; line-height: 64px;
} }
} }
&__title { &__title {
position: relative; position: relative;
text-align: center; text-align: center;
} }
&__h1 { &__h1 {
font-size: 30px; font-size: 30px;
padding-top: 140px; padding-top: 140px;
font-weight: normal; font-weight: normal;
img { img {
height: 32px; height: 32px;
width: 32px; width: 32px;
margin-right: 10px; margin-right: 10px;
} }
a { a {
color: #fff; color: #fff;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: $fade-lighter; color: $fade-lighter;
} }
} }
} }
&__h2 { &__h2 {
font-size: 20px; font-size: 20px;
font-weight: 300; font-weight: 300;
@ -134,14 +149,17 @@ a {
color: $fade-lighter; color: $fade-lighter;
line-height: 24px; line-height: 24px;
} }
&__nav { &__nav {
position: relative; position: relative;
a { a {
font-size: 13px; font-size: 13px;
float: left; float: left;
line-height: 24px; line-height: 24px;
color: $fade-lighter; color: $fade-lighter;
margin: 0 20px 90px 0; margin: 0 20px 90px 0;
&:hover { &:hover {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
@ -165,8 +183,10 @@ a {
padding: 20px 0; padding: 20px 0;
background-color: $black-bg; background-color: $black-bg;
color: #fff; color: #fff;
a { a {
color: $fade-lighter; color: $fade-lighter;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: #fff; color: #fff;
@ -184,6 +204,7 @@ a {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
margin: 0 -20px; margin: 0 -20px;
.item { .item {
flex: 1 1 300px; flex: 1 1 300px;
overflow: hidden; overflow: hidden;
@ -195,6 +216,7 @@ a {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
background-color: #fff; background-color: #fff;
&--large { &--large {
flex-direction: row; flex-direction: row;
flex: 1 1 100%; flex: 1 1 100%;
@ -210,15 +232,18 @@ a {
flex: unset; flex: unset;
} }
} }
&:hover { &:hover {
box-shadow: 8px 28px 50px rgba(39, 44, 49, .07), 1px 6px 12px rgba(39, 44, 49, .04); box-shadow: 8px 28px 50px rgba(39, 44, 49, .07), 1px 6px 12px rgba(39, 44, 49, .04);
transform: translate3D(0, -1px, 0) scale(1.02); transform: translate3D(0, -1px, 0) scale(1.02);
} }
&__cover { &__cover {
background-size: cover; background-size: cover;
background-position: center center; background-position: center center;
height: 200px; height: 200px;
} }
&__main { &__main {
padding: 25px; padding: 25px;
box-sizing: border-box; box-sizing: border-box;
@ -226,6 +251,7 @@ a {
flex-direction: column; flex-direction: column;
flex: 1; flex: 1;
} }
&__tag { &__tag {
display: inline-block; display: inline-block;
margin-bottom: 4px; margin-bottom: 4px;
@ -235,26 +261,45 @@ a {
font-weight: 500; font-weight: 500;
letter-spacing: .5px; letter-spacing: .5px;
text-transform: uppercase; text-transform: uppercase;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: rgba($gray, 0.8); color: rgba($gray, 0.8);
} }
} }
&__title { &__title {
margin-bottom: 10px; margin-bottom: 10px;
a {
& > a {
color: $black; color: $black;
font-size: 18px; font-size: 18px;
line-height: 24px; line-height: 24px;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: rgba($black, 0.8); color: rgba($black, 0.8);
} }
} }
sup { sup {
font-size: 12px; font-size: 12px;
font-weight: normal; font-weight: normal;
color: rgba($gray, 0.8); color: rgba($gray, 0.8);
a {
color: rgba($gray, 0.8);
cursor: text;
&:hover {
color: rgba($gray, 0.8);
text-decoration: none;
}
&:visited {
color: #fff;
}
}
} }
} }
@ -262,6 +307,7 @@ a {
line-height: 24px; line-height: 24px;
color: $black; color: $black;
flex: 1; flex: 1;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: rgba($black, 0.8); color: rgba($black, 0.8);
@ -272,6 +318,7 @@ a {
float: right; float: right;
margin-top: 18px; margin-top: 18px;
color: $gray; color: $gray;
&:hover { &:hover {
text-decoration: none; text-decoration: none;
color: rgba($gray, 0.8); color: rgba($gray, 0.8);
@ -281,6 +328,7 @@ a {
&__avatar { &__avatar {
margin-top: 10px; margin-top: 10px;
float: left; float: left;
img { img {
height: 32px; height: 32px;
width: 32px; width: 32px;
@ -304,11 +352,13 @@ a {
line-height: 30px; line-height: 30px;
font-size: 12px; font-size: 12px;
margin: 0 5px 40px; margin: 0 5px 40px;
&:hover, &:hover,
&--active { &--active {
opacity: 0.68; opacity: 0.68;
text-decoration: none; text-decoration: none;
} }
&--omit { &--omit {
background-color: transparent; background-color: transparent;
color: $black; color: $black;
@ -318,13 +368,16 @@ a {
.article { .article {
background-color: #fff; background-color: #fff;
&__bottom { &__bottom {
background-color: #fff; background-color: #fff;
position: relative; position: relative;
.fn__flex { .fn__flex {
flex-wrap: wrap; flex-wrap: wrap;
margin: 0 -20px; margin: 0 -20px;
} }
.item { .item {
position: relative; position: relative;
flex: 1 1 300px; flex: 1 1 300px;
@ -335,6 +388,7 @@ a {
overflow: hidden; overflow: hidden;
text-align: center; text-align: center;
box-sizing: border-box; box-sizing: border-box;
&:before { &:before {
content: ""; content: "";
position: absolute; position: absolute;
@ -346,16 +400,19 @@ a {
background-size: cover; background-size: cover;
filter: brightness(48%); filter: brightness(48%);
} }
h3 { h3 {
color: #fff; color: #fff;
position: relative; position: relative;
margin-bottom: 20px; margin-bottom: 20px;
} }
ul { ul {
padding-left: 0; padding-left: 0;
position: relative; position: relative;
list-style: none; list-style: none;
} }
a { a {
display: block; display: block;
border-bottom: 1px solid rgba($gray, .8); border-bottom: 1px solid rgba($gray, .8);
@ -365,6 +422,7 @@ a {
} }
} }
} }
&__top { &__top {
position: fixed; position: fixed;
width: 100%; width: 100%;
@ -374,6 +432,7 @@ a {
height: 60px; height: 60px;
transition: all .3s ease; transition: all .3s ease;
z-index: 1; z-index: 1;
.title { .title {
float: left; float: left;
margin-left: 20px; margin-left: 20px;
@ -381,9 +440,11 @@ a {
font-size: 22px; font-size: 22px;
} }
} }
&__share { &__share {
float: right; float: right;
position: relative; position: relative;
.item { .item {
height: 60px; height: 60px;
width: 60px; width: 60px;
@ -394,32 +455,41 @@ a {
color: #fdc200; color: #fdc200;
cursor: pointer; cursor: pointer;
transition: all .3s ease; transition: all .3s ease;
svg { svg {
height: 20px; height: 20px;
width: 20px; width: 20px;
} }
&[data-type="wechat"] { &[data-type="wechat"] {
color: #3caf36; color: #3caf36;
&:hover { &:hover {
background-color: #3caf36; background-color: #3caf36;
} }
} }
&[data-type="twitter"] { &[data-type="twitter"] {
color: #18a3fa; color: #18a3fa;
&:hover { &:hover {
background-color: #18a3fa; background-color: #18a3fa;
} }
} }
&[data-type="weibo"] { &[data-type="weibo"] {
color: #f93; color: #f93;
&:hover { &:hover {
background-color: #f93; background-color: #f93;
} }
} }
&:hover { &:hover {
color: #fff; color: #fff;
background-color: #fdc200; background-color: #fdc200;
} }
&__qr { &__qr {
position: absolute; position: absolute;
top: 61px; top: 61px;
@ -427,6 +497,7 @@ a {
} }
} }
} }
&__progress { &__progress {
position: absolute; position: absolute;
right: 0; right: 0;
@ -437,32 +508,39 @@ a {
border: none; border: none;
background: transparent; background: transparent;
-webkit-appearance: none; -webkit-appearance: none;
&::-webkit-progress-value { &::-webkit-progress-value {
background-color: $link; background-color: $link;
} }
&::-webkit-progress-bar { &::-webkit-progress-bar {
background-color: transparent; background-color: transparent;
} }
} }
.item { .item {
&__meta { &__meta {
padding-top: 76px; padding-top: 76px;
font-size: 14px; font-size: 14px;
text-transform: uppercase; text-transform: uppercase;
color: rgba($gray, .8); color: rgba($gray, .8);
a { a {
color: $gray; color: $gray;
} }
} }
&__title { &__title {
font-size: 28px; font-size: 28px;
margin-bottom: 40px; margin-bottom: 40px;
sup { sup {
font-size: 14px; font-size: 14px;
font-weight: normal; font-weight: normal;
color: rgba($gray, .8); color: rgba($gray, .8);
} }
} }
&__cover { &__cover {
height: 800px; height: 800px;
background-size: cover; background-size: cover;
@ -472,19 +550,23 @@ a {
border-radius: 5px; border-radius: 5px;
filter: sepia(0.2) contrast(1.3) opacity(.86); filter: sepia(0.2) contrast(1.3) opacity(.86);
} }
&__content { &__content {
padding: 70px 100px 0; padding: 70px 100px 0;
box-sizing: border-box; box-sizing: border-box;
background-color: #fff; background-color: #fff;
&--article { &--article {
margin-top: -164px; margin-top: -164px;
position: relative; position: relative;
padding-bottom: 30px; padding-bottom: 30px;
&::-webkit-scrollbar { &::-webkit-scrollbar {
display: none; display: none;
} }
} }
} }
&__tip { &__tip {
margin-bottom: 40px; margin-bottom: 40px;
border-radius: 5px; border-radius: 5px;
@ -495,6 +577,7 @@ a {
background: #f4f8fb; background: #f4f8fb;
cursor: pointer; cursor: pointer;
font-size: 18px; font-size: 18px;
&:hover { &:hover {
box-shadow: 8px 28px 50px rgba(39, 44, 49, .07), 1px 6px 12px rgba(39, 44, 49, .04); box-shadow: 8px 28px 50px rgba(39, 44, 49, .07), 1px 6px 12px rgba(39, 44, 49, .04);
transform: translate3D(0, -1px, 0) scale(1.02); transform: translate3D(0, -1px, 0) scale(1.02);
@ -521,10 +604,12 @@ a {
margin: 0; margin: 0;
font-size: 14px; font-size: 14px;
line-height: 24px; line-height: 24px;
li.current a, li.current a,
a:hover { a:hover {
color: $link; color: $link;
} }
a { a {
display: block; display: block;
margin-top: -24px; margin-top: -24px;
@ -543,6 +628,7 @@ a {
content: ''; content: '';
border-radius: 50%; border-radius: 50%;
} }
&.current:before { &.current:before {
background-color: $link; background-color: $link;
} }
@ -552,11 +638,13 @@ a {
.comment { .comment {
background-color: #f4f8fb; background-color: #f4f8fb;
position: relative; position: relative;
&__wrapper { &__wrapper {
margin: 0 auto; margin: 0 auto;
padding: 0 100px 0.1px; padding: 0 100px 0.1px;
box-sizing: border-box; box-sizing: border-box;
} }
&-body-ref { &-body-ref {
position: absolute; position: absolute;
left: 80px; left: 80px;
@ -598,8 +686,10 @@ a {
color: rgba($gray, .8); color: rgba($gray, .8);
float: left; float: left;
line-height: 40px; line-height: 40px;
a { a {
color: $gray; color: $gray;
&:hover { &:hover {
color: rgba($gray, .8); color: rgba($gray, .8);
} }
@ -634,6 +724,7 @@ a {
.other { .other {
position: relative; position: relative;
&__title { &__title {
margin: -220px 0 5px; margin: -220px 0 5px;
color: #fff; color: #fff;
@ -641,14 +732,17 @@ a {
text-align: center; text-align: center;
font-weight: 400; font-weight: 400;
} }
&__meta { &__meta {
color: #fff; color: #fff;
font-size: 14px; font-size: 14px;
text-align: center; text-align: center;
&--list { &--list {
margin-bottom: 154px; margin-bottom: 154px;
} }
} }
&__content { &__content {
background-color: #fff; background-color: #fff;
padding: 70px 100px; padding: 70px 100px;
@ -656,15 +750,18 @@ a {
box-shadow: 8px 14px 38px rgba(39, 44, 49, 0.06), 1px 3px 8px rgba(39, 44, 49, 0.03); box-shadow: 8px 14px 38px rgba(39, 44, 49, 0.06), 1px 3px 8px rgba(39, 44, 49, 0.03);
border-radius: 5px; border-radius: 5px;
} }
&__item { &__item {
line-height: 20px; line-height: 20px;
margin: 10px; margin: 10px;
white-space: nowrap; white-space: nowrap;
display: block; display: block;
&--archive { &--archive {
width: 187px; width: 187px;
display: inline-block; display: inline-block;
} }
span, div { span, div {
color: $gray; color: $gray;
font-size: 12px; font-size: 12px;
@ -677,28 +774,36 @@ a {
@media (max-width: 768px) { @media (max-width: 768px) {
.header { .header {
padding: 10px 0; padding: 10px 0;
&__h1 { &__h1 {
padding-top: 60px; padding-top: 60px;
} }
&__h2 { &__h2 {
margin-bottom: 40px; margin-bottom: 40px;
} }
&__nav { &__nav {
.fn__right { .fn__right {
float: none; float: none;
} }
a { a {
margin: 0 10px 0 0; margin: 0 10px 0 0;
} }
} }
&--article { &--article {
height: auto; height: auto;
.header__nav a { .header__nav a {
line-height: 24px; line-height: 24px;
} }
} }
&--other { &--other {
height: 360px; height: 360px;
.header__nav a { .header__nav a {
line-height: 24px; line-height: 24px;
} }
@ -708,8 +813,10 @@ a {
.articles { .articles {
position: initial; position: initial;
margin: 10px -5px 0 -5px; margin: 10px -5px 0 -5px;
.item { .item {
margin: 0 5px 10px; margin: 0 5px 10px;
&--large { &--large {
flex-direction: column; flex-direction: column;
flex: 1 1 300px; flex: 1 1 300px;
@ -729,6 +836,7 @@ a {
.pagination { .pagination {
margin-top: 0; margin-top: 0;
margin-bottom: 5px; margin-bottom: 5px;
&__item { &__item {
margin-bottom: 5px; margin-bottom: 5px;
} }
@ -745,9 +853,11 @@ a {
.article { .article {
&__top { &__top {
height: 40px; height: 40px;
.title { .title {
display: none; display: none;
} }
.toc { .toc {
display: block; display: block;
float: left; float: left;
@ -756,29 +866,36 @@ a {
cursor: pointer; cursor: pointer;
} }
} }
&__share .item { &__share .item {
height: 40px; height: 40px;
width: 40px; width: 40px;
padding: 10px 0; padding: 10px 0;
} }
.item { .item {
&__meta { &__meta {
padding-top: 40px; padding-top: 40px;
} }
&__cover { &__cover {
display: none; display: none;
} }
&__content { &__content {
padding: 10px 10px 0; padding: 10px 10px 0;
&--article { &--article {
margin-top: -20px; margin-top: -20px;
} }
} }
} }
&__bottom { &__bottom {
.fn__flex { .fn__flex {
margin: 0 0 10px 0; margin: 0 0 10px 0;
} }
.item { .item {
margin: 10px 0 0 0; margin: 10px 0 0 0;
} }
@ -789,6 +906,7 @@ a {
&__title { &__title {
padding: 10px 0; padding: 10px 0;
} }
&__wrapper { &__wrapper {
padding: 0 10px 0.1px; padding: 0 10px 0.1px;
} }
@ -797,6 +915,7 @@ a {
.item { .item {
margin-bottom: 10px; margin-bottom: 10px;
padding: 10px; padding: 10px;
&__avatar { &__avatar {
margin-bottom: 10px; margin-bottom: 10px;
} }
@ -807,10 +926,12 @@ a {
&__title { &__title {
margin-top: -280px; margin-top: -280px;
} }
&__content { &__content {
padding: 20px; padding: 20px;
margin: 40px auto 10px; margin: 40px auto 10px;
} }
&__meta--list { &__meta--list {
margin-bottom: 40px; margin-bottom: 40px;
} }

View File

@ -56,14 +56,16 @@
<a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated> <#if article.articlePutTop>
<sup class="red"> <sup>
${updatedLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.articlePutTop> <#if article.hasUpdated>
<sup class="red"> <sup>
${topArticleLabel} <a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@
* skin community style * skin community style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.3.0.0, Jul 17, 2019 * @version 2.4.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/toc"; @import "../../../scss/toc";
@ -298,6 +298,20 @@ a.header-title {
.article-main h2.title sup { .article-main h2.title sup {
font-size: 12px; font-size: 12px;
a {
cursor: text;
color: #555555;
&:hover {
color: #555555;
text-decoration: none;
}
&:visited {
color: #fff;
}
}
} }
.read-more a { .read-more a {

View File

@ -36,16 +36,18 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated>
<sup class="post-tip">
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop> <#if article.articlePutTop>
<sup class="post-tip"> <sup class="post-tip">
${topArticleLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.hasUpdated>
<sup>
<a class="post-tip" href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h2> </h2>
</header> </header>
<section class="post-excerpt post-content fn-clear"> <section class="post-excerpt post-content fn-clear">

File diff suppressed because one or more lines are too long

View File

@ -21,7 +21,7 @@
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a> * @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 2.4.0.0, Jul 17, 2019 * @version 2.5.0.0, Aug 2, 2019
*/ */
@import "../../../scss/toc"; @import "../../../scss/toc";
@import "../../../scss/usite"; @import "../../../scss/usite";
@ -799,6 +799,15 @@ article.post:after {
font-size: 1.3rem; font-size: 1.3rem;
white-space: nowrap; white-space: nowrap;
color: #9EABB3; color: #9EABB3;
cursor: text;
&:hover {
color: #9EABB3;
}
&:visited {
color: #fff;
}
} }
.post-excerpt p { .post-excerpt p {

View File

@ -30,7 +30,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.4.0.0, Jul 17, 2019 * @version 0.5.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/function"; @import "../../../scss/function";
@ -186,7 +186,7 @@ a {
&__title { &__title {
padding: 20px 0; padding: 20px 0;
a { & > a {
text-decoration: none; text-decoration: none;
font-size: 25px; font-size: 25px;
font-weight: bold; font-weight: bold;
@ -203,6 +203,20 @@ a {
color: $gray; color: $gray;
font-size: 12px; font-size: 12px;
top: -10px; top: -10px;
a {
cursor: text;
color: #999;
&:hover {
color: #999;
text-decoration: none;
}
&:visited {
color: #fff;
}
}
} }
} }

View File

@ -42,7 +42,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.2.0.0, Jul 17, 2019 * @version 2.3.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/usite"; @import "../../../scss/usite";
@ -441,6 +441,19 @@
top: -6px; top: -6px;
font-size: 12px; font-size: 12px;
color: #03a87c; color: #03a87c;
a {
cursor: text;
color: #03a87c;
&:hover {
color: #03a87c;
}
&:visited {
color: #fff;
}
}
} }
&__content { &__content {

View File

@ -24,16 +24,18 @@
<a rel="bookmark" class="article-title" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" class="article-title" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated>
<sup class="tip">
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop> <#if article.articlePutTop>
<sup class="tip"> <sup class="tip">
${topArticleLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.hasUpdated>
<sup>
<a class="tip tip__sup" href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</span> </span>
<span class="expand-ico" onclick="getArticle(this, '${article.oId}');"></span> <span class="expand-ico" onclick="getArticle(this, '${article.oId}');"></span>
<span class="clear"></span> <span class="clear"></span>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin neoease style * skin neoease style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.2.0.0, Jul 17, 2019 * @version 2.3.0.0, Aug 2, 2019
*/ */
@import "../../../scss/toc"; @import "../../../scss/toc";
@import "../../../scss/usite"; @import "../../../scss/usite";
@ -120,6 +120,19 @@ textarea, input {
.tip { .tip {
color: #D54E21; color: #D54E21;
font-size: 11px; font-size: 11px;
&__sup {
cursor: text;
&:link {
color: #D54E21;
}
&:hover {
color: #D54E21;
}
&:visited {
color: #F9F9F9;
}
}
} }
.em-span { .em-span {

View File

@ -36,8 +36,10 @@
</sup> </sup>
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup class="ft__red"> <sup>
<a class="ft__red" href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
<h2 class="item__title"> <h2 class="item__title">

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* skin style * skin style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 0.3.0.0, Jul 17, 2019 * @version 0.4.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/function"; @import "../../../scss/function";
@ -346,6 +346,14 @@ a:active, a:focus, a:hover {
background-color: #fff; background-color: #fff;
position: absolute; position: absolute;
width: 100%; width: 100%;
sup a {
cursor: text;
&:visited {
color: #fff;
}
}
} }
&__abstract { &__abstract {

View File

@ -23,14 +23,16 @@
<a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated> <#if article.articlePutTop>
<sup class="red"> <sup>
${updatedLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.articlePutTop> <#if article.hasUpdated>
<sup class="red"> <sup>
${topArticleLabel} <a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@
* skin favoutite style * skin favoutite style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.3.0.0, Jul 17, 2019 * @version 2.4.0.0, Aug 2, 2019
*/ */
@import "../../../scss/reset"; @import "../../../scss/reset";
@import "../../../scss/toc"; @import "../../../scss/toc";
@ -272,6 +272,19 @@ img {
.article-title sup { .article-title sup {
font-size: 12px; font-size: 12px;
a {
color: #000;
cursor: text;
&:hover {
color: #000;
}
&:visited {
color: #fff;
}
}
} }
.article-title a { .article-title a {

View File

@ -23,14 +23,16 @@
<a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" class="no-underline" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated> <#if article.articlePutTop>
<sup class="red"> <sup>
${updatedLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.articlePutTop> <#if article.hasUpdated>
<sup class="red"> <sup>
${topArticleLabel} <a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@
* skin i-nove style * skin i-nove style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.2.0.0, Jul 17, 2019 * @version 2.3.0.0, JAug 2, 2019
*/ */
@import "../../../scss/toc"; @import "../../../scss/toc";
@import "../../../scss/reset"; @import "../../../scss/reset";
@ -277,6 +277,19 @@ h5 {
.article-title sup { .article-title sup {
font-size: 12px; font-size: 12px;
a {
color: #555555;
cursor: text;
&:hover {
color: #555555;
}
&:visited {
color: #fff;
}
}
} }
.article-title a { .article-title a {

View File

@ -44,16 +44,16 @@
</div> </div>
<h2 class="article-title"> <h2 class="article-title">
<#if article.hasUpdated>
<span>
[${updatedLabel}]
</span>
</#if>
<#if article.articlePutTop> <#if article.articlePutTop>
<span> <span>
[${topArticleLabel}] [${topArticleLabel}]
</span> </span>
</#if> </#if>
<#if article.hasUpdated>
<span>
[${updatedLabel}]
</span>
</#if>
<a rel="bookmark" title="${article.articleTitle}" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" title="${article.articleTitle}" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>

View File

@ -32,7 +32,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a class="post__sup" href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h1> </h1>

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@
* skin next style * skin next style
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.2.1.0, Jul 19, 2019 * @version 2.3.0.0, Aug 2, 2019
*/ */
@import "../../../scss/usite"; @import "../../../scss/usite";
@import "../../../scss/toc"; @import "../../../scss/toc";
@ -754,6 +754,16 @@ img {
} }
} }
.post__sup {
cursor: text;
border-bottom: 0;
&:hover {
color: #555;
}
&:visited {
color: #fff;
}
}
/* end article */ /* end article */
/* start comments */ /* start comments */

View File

@ -22,14 +22,16 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated> <#if article.articlePutTop>
<sup class="red"> <sup>
${updatedLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.articlePutTop> <#if article.hasUpdated>
<sup class="red"> <sup>
${topArticleLabel} <a class="sup" href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h1> </h1>

File diff suppressed because one or more lines are too long

View File

@ -29,7 +29,7 @@ Update: Dongxu Wang 2011-02-24
/* /*
* skin owmx-3.0 style * skin owmx-3.0 style
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.3.0.0, Jul 17, 2019 * @version 2.4.0.0, Aug 2, 2019
*/ */
@import "../../../scss/toc"; @import "../../../scss/toc";
@import "vditor/src/assets/scss/classic"; @import "vditor/src/assets/scss/classic";
@ -148,6 +148,23 @@ sup {
top: -4px; top: -4px;
} }
a.sup {
color: #444;
cursor: text;
font-size: 12.5px;
&:link {
color: #444;
}
&:hover {
color: #444;
}
&:visited {
color: #fff;
}
}
/* Header */ /* Header */
header { header {
border-radius: 4px; border-radius: 4px;

View File

@ -34,16 +34,18 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated>
<sup>
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop> <#if article.articlePutTop>
<sup> <sup>
${topArticleLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.hasUpdated>
<sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h3> </h3>
<div class="vditor-reset"> <div class="vditor-reset">
${article.articleAbstract} ${article.articleAbstract}

View File

@ -62,6 +62,7 @@ ${topBarReplacement}
</sup> </sup>
</#if> </#if>
</h2> </h2>
<br>
<div class="vditor-reset"> <div class="vditor-reset">
${article.articleContent} ${article.articleContent}
</div> </div>

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
* timeline skin style. * timeline skin style.
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 2.2.0.0, Jul 17, 2019 * @version 2.3.0.0, Aug 2, 2019
*/ */
@import "../../../scss/usite"; @import "../../../scss/usite";
@import "../../../scss/toc"; @import "../../../scss/toc";
@ -537,6 +537,13 @@ article .article-title {
article .article-title > sup { article .article-title > sup {
color: #6599C6; color: #6599C6;
font-size: 70%; font-size: 70%;
a {
color: #6599C6;
cursor: text;
&:visited {
color: #fff;
}
}
} }
article .article-title a { article .article-title a {

View File

@ -69,16 +69,18 @@
<a rel="bookmark" href="${servePath}${article.articlePermalink}"> <a rel="bookmark" href="${servePath}${article.articlePermalink}">
${article.articleTitle} ${article.articleTitle}
</a> </a>
<#if article.hasUpdated>
<sup>
${updatedLabel}
</sup>
</#if>
<#if article.articlePutTop> <#if article.articlePutTop>
<sup> <sup>
${topArticleLabel} ${topArticleLabel}
</sup> </sup>
</#if> </#if>
<#if article.hasUpdated>
<sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel}
</a>
</sup>
</#if>
</h3> </h3>
<div class="vditor-reset"> <div class="vditor-reset">
${article.articleAbstract} ${article.articleAbstract}

View File

@ -19,7 +19,7 @@
* @fileoverview timeline js. * @fileoverview timeline js.
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 1.0.1.2, Jun 6, 2013 * @version 1.1.0.0, Aug 2, 2019
*/ */
var timeline = { var timeline = {
_COLHA: 0, _COLHA: 0,
@ -249,14 +249,15 @@ var timeline = {
+ Label.servePath + article.articlePermalink + '">' + Label.servePath + article.articlePermalink + '">'
+ article.articleTitle + '</a>'; + article.articleTitle + '</a>';
if (article.hasUpdated) {
articlesHTML += '<sup>' + Label.updatedLabel + '</sup>';
}
if (article.articlePutTop) { if (article.articlePutTop) {
articlesHTML += '<sup>' + Label.topArticleLabel + '</sup>'; articlesHTML += '<sup>' + Label.topArticleLabel + '</sup>';
} }
if (article.hasUpdated) {
articlesHTML += '<sup><a href="'
+ Label.servePath + article.articlePermalink + '">' + Label.updatedLabel + '</a></sup>';
}
articlesHTML += '</h3><p>' + article.articleAbstract + '</p>' articlesHTML += '</h3><p>' + article.articleAbstract + '</p>'
+ '<span class="ico-tags ico" title="' + Label.tagLabel + '">'; + '<span class="ico-tags ico" title="' + Label.tagLabel + '">';

File diff suppressed because one or more lines are too long

View File

@ -31,7 +31,9 @@
</#if> </#if>
<#if article.hasUpdated> <#if article.hasUpdated>
<sup> <sup>
<a href="${servePath}${article.articlePermalink}">
${updatedLabel} ${updatedLabel}
</a>
</sup> </sup>
</#if> </#if>
</h2> </h2>

File diff suppressed because one or more lines are too long

View File

@ -21,7 +21,7 @@
* *
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a> * @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a> * @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 2.5.0.0, Aug 2, 2019 * @version 2.6.0.0, Aug 2, 2019
*/ */
@import "../../../scss/toc"; @import "../../../scss/toc";
@import "../../../scss/usite"; @import "../../../scss/usite";
@ -605,6 +605,19 @@ article header sup {
font-size: 14px; font-size: 14px;
font-weight: normal; font-weight: normal;
color: #999; color: #999;
a {
cursor: text;
color: #999;
&:hover {
color: #999;
}
&:visited {
color: #fff;
}
}
} }
article header time { article header time {