This commit is contained in:
2019-05-30 18:52:14 +08:00
commit aa360a22bf
341 changed files with 30369 additions and 0 deletions

View File

@ -0,0 +1,24 @@
.links-of-author {
margin-top: 20px;
a, span.exturl {
display: inline-block;
vertical-align: middle;
margin-right: 10px;
margin-bottom: 10px;
border-bottom-color: $black-light;
font-size: 13px;
if hexo-config('social_icons.transition') { the-transition(); }
&:before {
display: inline-block;
vertical-align: middle;
margin-right: 3px;
content: " ";
width: 4px;
height: 4px;
circle();
background: rgb(random-color(0, 255) - 50%, random-color(0, 255) - 50%, random-color(0, 255) - 50%);
}
}
}

View File

@ -0,0 +1,39 @@
.site-author-image {
show();
margin: 0 auto;
padding: $site-author-image-padding;
max-width: $site-author-image-width;
height: $site-author-image-height;
border: $site-author-image-border-width solid $site-author-image-border-color;
opacity: hexo-config('avatar.opacity') is a 'unit' ? hexo-config('avatar.opacity') : 1;
}
if hexo-config('avatar.rounded') {
.site-author-image {
border-radius: 100%;
}
}
if hexo-config('avatar.rotated') {
.site-author-image {
transition: transform 1.0s ease-out;
}
.site-author-image:hover {
transform: rotateZ(360deg);
}
}
.site-author-name {
margin: $site-author-name-margin;
text-align: $site-author-name-align;
color: $site-author-name-color;
font-weight: $site-author-name-weight;
}
.site-description {
margin-top: $site-description-margin-top;
text-align: $site-description-align;
font-size: $site-description-font-size;
color: $site-description-color;
}

View File

@ -0,0 +1,28 @@
.links-of-blogroll {
margin-top: 10px;
font-size: 13px;
}
.links-of-blogroll-title {
margin-top: 0;
font-size: 14px;
font-weight: $font-weight-bold;
}
.links-of-blogroll-list {
margin: 0;
padding: 0;
list-style: none;
}
.links-of-blogroll-item {
padding: 2px 10px;
a, span.exturl {
max-width: 280px;
box-sizing: border-box;
display: inline-block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}

View File

@ -0,0 +1,23 @@
.feed-link, .chat {
margin-top: 10px;
a {
display: inline-block;
padding: 0 15px;
color: rgb(252, 100, 35);
border: 1px solid rgb(252, 100, 35) !important;
border-radius: 4px;
i {
color: rgb(252, 100, 35);
font-size: 14px;
}
&:hover {
color: white;
background: rgb(252, 100, 35);
i { color: white; }
}
}
}

View File

@ -0,0 +1,18 @@
.sidebar-active + #sidebar-dimmer {
+mobile() {
opacity: .7;
transition: opacity .5s;
}
transform: translateX(-100%);
}
#sidebar-dimmer {
show();
position: fixed;
top: 0;
left: 100%;
width: 100%;
height: 100%;
background: #000;
opacity: 0;
}

View File

@ -0,0 +1,30 @@
// Sidebar Navigation
.sidebar-nav {
margin: 0 0 20px;
padding-left: 0;
}
.sidebar-nav li {
display: inline-block;
cursor: pointer;
border-bottom: 1px solid transparent;
font-size: 14px;
color: $sidebar-nav-color;
&:hover { color: $sidebar-nav-hover-color; }
}
.page-post-detail .sidebar-nav-toc { padding: 0 5px; }
.page-post-detail .sidebar-nav-overview { margin-left: 10px; }
.sidebar-nav .sidebar-nav-active {
color: $sidebar-highlight;
border-bottom-color: $sidebar-highlight;
&:hover { color: $sidebar-highlight; }
}
.sidebar-panel { display: none; }
.sidebar-panel-active { display: block; }

View File

@ -0,0 +1,61 @@
.post-toc-empty {
font-size: 14px;
color: $grey-dim;
}
.post-toc-wrap { overflow: hidden; }
.post-toc { overflow: auto; }
.post-toc ol {
margin: 0;
padding: 0 2px 5px 10px;
text-align: left;
list-style: none;
font-size: 14px;
& > ol { padding-left: 0; }
a {
the-transition();
transition-property: all;
color: $toc-link-color;
border-bottom-color: $toc-link-border-color;
&:hover {
color: $toc-link-hover-color;
border-bottom-color: $toc-link-hover-border-color;
}
}
}
.post-toc .nav-item {
overflow: hidden;
text-overflow: ellipsis;
//text-align: justify;
white-space: nowrap if !hexo-config('toc.wrap');
line-height: 1.8;
}
.post-toc .nav .nav-child {
display: hexo-config('toc.expand_all') ? block : none;
}
.post-toc .nav .active > .nav-child { display: block; }
.post-toc .nav .active-current > .nav-child {
show();
& > .nav-item { display: block; }
}
.post-toc .nav .active > a {
color: $toc-link-active-color;
border-bottom-color: $toc-link-active-border-color;
}
.post-toc .nav .active-current > a {
color: $toc-link-active-current-color;
&:hover {
color: $toc-link-active-current-border-color;
}
}

View File

@ -0,0 +1,30 @@
.sidebar-toggle {
position: fixed;
right: $b2t-position-right;
bottom: 45px;
width: 14px;
height: 14px;
padding: 5px;
background: $black-deep;
line-height: 0;
z-index: $zindex-5;
cursor: pointer;
+tablet-mobile() {
opacity: $b2t-opacity-hover;
right: $b2t-position-right-mobile;
hide() if not hexo-config('sidebar.onmobile');
}
}
.sidebar-toggle-line {
position: relative;
display: inline-block;
vertical-align: top;
height: 2px;
width: 100%;
background: white;
margin-top: 3px;
&:first-child { margin-top: 0; }
}

View File

@ -0,0 +1,64 @@
.sidebar {
position: fixed;
right: 0;
top: 0;
bottom: 0;
width: 0;
z-index: $zindex-4;
box-shadow: inset 0 2px 6px black;
background: $black-deep;
a, span.exturl {
color: $grey-dark;
border-bottom-color: $black-light;
&:hover {
color: $gainsboro;
border-bottom-color: $gainsboro;
}
}
+tablet-mobile() {
hide() if not hexo-config('sidebar.onmobile');
}
}
.sidebar-inner {
position: relative;
padding: 20px 10px;
color: $grey-dark;
text-align: center;
}
.site-overview-wrap {
overflow: hidden;
}
.site-overview {
overflow-y: auto;
overflow-x: hidden;
}
.cc-license {
margin-top: 10px;
text-align: center;
.cc-opacity {
opacity: 0.7;
border-bottom: none;
&:hover { opacity: 0.9; }
}
img { display: inline-block; }
}
@import "sidebar-toggle";
@import "sidebar-author";
@import "sidebar-author-links";
@import "sidebar-button";
@import "sidebar-blogroll";
@import "sidebar-nav";
@import "site-state" if hexo-config('site_state');
@import "sidebar-toc" if hexo-config('toc.enable');
@import "sidebar-dimmer" if hexo-config('sidebar.dimmer');

View File

@ -0,0 +1,31 @@
.site-state {
display: flex;
justify-content: center;
overflow: hidden;
line-height: 1.4;
white-space: nowrap;
text-align: $site-state-align;
margin-top: 10px;
}
.site-state-item {
padding: 0 15px;
border-left: 1px solid $site-state-item-border-color;
&:first-child { border-left: none; }
a { border-bottom: none; }
}
.site-state-item-count {
show();
text-align: center;
color: $site-state-item-count-color;
font-weight: $font-weight-bold;
font-size: $site-state-item-count-font-size;
}
.site-state-item-name {
font-size: $site-state-item-name-font-size;
color: $site-state-item-name-color;
}