-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1912025
commit f313c60
Showing
98 changed files
with
2,212 additions
and
1,796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,40 @@ | ||
.btn { | ||
display: inline-block; | ||
padding: 0 20px; | ||
font-size: $btn-default-font-size; | ||
color: $btn-default-color; | ||
background: $btn-default-bg; | ||
border: $btn-default-border-width solid $btn-default-border-color; | ||
text-decoration: none; | ||
border-radius: $btn-default-radius; | ||
color: $btn-default-color; | ||
display: inline-block; | ||
font-size: $btn-default-font-size; | ||
padding: 0 20px; | ||
text-decoration: none; | ||
transition-property: background-color; | ||
the-transition(); | ||
line-height: 2; | ||
|
||
&:hover { | ||
background: $btn-default-hover-bg; | ||
border-color: $btn-default-hover-border-color; | ||
color: $btn-default-hover-color; | ||
background: $btn-default-hover-bg; | ||
} | ||
|
||
+.btn { | ||
margin: 0 0 8px 8px; | ||
} | ||
|
||
.fa-fw { | ||
width: (18em / 14); | ||
text-align: left; | ||
width: (18em / 14); | ||
} | ||
} | ||
|
||
.btn-bar { | ||
display: block; | ||
width: 22px; | ||
height: 2px; | ||
background: $text-color; | ||
border-radius: 1px; | ||
display: block; | ||
height: 2px; | ||
width: 22px; | ||
|
||
&+.btn-bar { margin-top: 4px; } | ||
&+.btn-bar { | ||
margin-top: 4px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.comments { | ||
.comments { | ||
margin: 60px 20px 0; | ||
overflow: hidden; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
@import "highlight"; | ||
@import "tags"; | ||
@import 'highlight'; | ||
@import 'tags'; | ||
@import 'buttons'; | ||
@import 'pagination'; | ||
@import 'comments'; | ||
|
||
@import "buttons"; | ||
@import "pagination"; | ||
@import "comments"; | ||
@import (hexo-config('back2top.sidebar') ? "back-to-top-sidebar" : "back-to-top") if (hexo-config('back2top.enable')); | ||
@import (hexo-config('back2top.sidebar') ? 'back-to-top-sidebar' : 'back-to-top') if (hexo-config('back2top.enable')); | ||
|
||
@import "header"; | ||
@import "post"; | ||
@import "sidebar"; | ||
@import "footer"; | ||
@import "third-party"; | ||
@import 'header'; | ||
@import 'post'; | ||
@import 'sidebar'; | ||
@import 'footer'; | ||
@import 'third-party'; | ||
@import 'pages'; | ||
|
||
@import "pages"; | ||
@import 'rainbow' if (hexo-config('safari_rainbow')); | ||
|
||
@import "rainbow" if hexo-config('safari_rainbow'); | ||
@import "scrollbar" if hexo-config('custom_scrollbar'); | ||
@import 'scrollbar' if (hexo-config('custom_scrollbar')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,46 @@ | ||
.footer { | ||
font-size: $font-size-small; | ||
color: $grey-dark; | ||
font-size: $font-size-small; | ||
|
||
img { border: none; } | ||
img { | ||
border: none; | ||
} | ||
} | ||
|
||
.footer-inner { text-align: center; } | ||
.footer-inner { | ||
text-align: center; | ||
} | ||
|
||
@keyframes iconAnimate { | ||
0%, 100% { transform: scale(1); } | ||
10%, 30% { transform: scale(0.9); } | ||
20%, 40%, 60%, 80% { transform: scale(1.1); } | ||
50%, 70% { transform: scale(1.1); } | ||
0%, 100% { | ||
transform: scale(1); | ||
} | ||
|
||
10%, 30% { | ||
transform: scale(.9); | ||
} | ||
|
||
20%, 40%, 60%, 80% { | ||
transform: scale(1.1); | ||
} | ||
|
||
50%, 70% { | ||
transform: scale(1.1); | ||
} | ||
} | ||
|
||
if hexo-config('footer.icon.animated') { | ||
if (hexo-config('footer.icon.animated')) { | ||
#animate { | ||
animation: iconAnimate 1.33s ease-in-out infinite; | ||
} | ||
} | ||
|
||
.with-love { | ||
color: unquote(hexo-config('footer.icon.color')); | ||
display: inline-block; | ||
margin: 0 5px; | ||
color: unquote(hexo-config('footer.icon.color')); | ||
} | ||
|
||
.powered-by, | ||
.theme-info { display: inline-block; } | ||
.powered-by, .theme-info { | ||
display: inline-block; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
.header { background: $head-bg; } | ||
.header { | ||
background: $head-bg; | ||
} | ||
|
||
.header-inner { position: relative; } | ||
.header-inner { | ||
position: relative; | ||
} | ||
|
||
@import "headerband"; | ||
@import "site-meta"; | ||
@import "site-nav"; | ||
@import "menu"; | ||
@import "github-banner" if hexo-config('github_banner.enable'); | ||
@import 'headerband'; | ||
@import 'site-meta'; | ||
@import 'site-nav'; | ||
@import 'menu'; | ||
|
||
@import 'github-banner' if (hexo-config('github_banner.enable')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.headband { | ||
height: $headband-height; | ||
background: $headband-bg; | ||
height: $headband-height; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.