feat(exampleSite): add some posts to exampleSite

This commit is contained in:
Dillon
2020-02-01 19:47:58 +08:00
parent 8aa4b6dce6
commit 437ef95e14
25 changed files with 343 additions and 142 deletions

View File

@@ -1,35 +1,37 @@
html {
font-family: $global-font-family;
}
/* scrollbar, only support webkit */
&::-webkit-scrollbar {
width: 8px;
height: 8px;
}
/* scrollbar, only support webkit */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
&::-webkit-scrollbar-thumb {
height: 40px;
background-color: #87878D;
border-radius: 16px;
::-webkit-scrollbar-thumb {
background-color: $scrollbar-color;
&:hover {
background-color: #A9A9B3;
}
&:hover {
background-color: $scrollbar-hover-color;
}
}
::selection {
background: rgba(0, 149, 255, 0.1);
background: $selection-color;
.dark-theme & {
background: $selection-color-dark;
}
}
body {
font-size: 16px;
font-weight: 400;
line-height: 26px;
line-height: 1.5rem;
background-color: $global-background-color;
color: $global-font-color;
&:before {
&::before {
content: "";
background-repeat: no-repeat;
background-position: center;