UNPKG

hexo-theme-volantis

Version:

Elegant and powerful theme for Hexo.

83 lines (77 loc) 1.96 kB
// 工具函数和混合宏 // 暗黑模式 volantis-dark(ondark) if hexo-config('plugins.darkmode.enable') @media (prefers-color-scheme: dark) :root --color-mode: 'dark' :root:not([color-scheme]) ondark() [color-scheme='dark'] ondark() // 为1个属性设置动画 trans1($op, $time = 0.2s) transition: $op $time ease-out // 为2个属性设置动画 trans2($op1, $op2) transition: $op1 0.2s ease-out, $op2 0.2s ease-out trans2pro($op1, $t1, $op2, $t2) transition: $op1 $t1 ease-out, $op2 $t2 ease-out // 为3个属性设置动画 trans3($op1, $op2, $op3) transition: $op1 0.2s ease-out, $op2 0.2s ease-out, $op3 0.2s ease-out // 全属性过渡 trans($time = 0.28s) transition: all $time ease // 卡片悬浮效果 hoverable-card() trans() &:hover box-shadow: 0 0 4px rgba(0,0,0,.1), 0 0 8px rgba(0,0,0,.08) // 文本省略号 txt-ellipsis() white-space: nowrap overflow: hidden text-overflow: ellipsis // 占位符样式 placeholder(rules) &::-webkit-input-placeholder rules() &:-moz-placeholder rules() &::-moz-placeholder rules() &:-ms-input-placeholder rules() // 禁止文本选中 disable-user-select() user-select: none // 自定义滚动条 scrollbar($w = 4px, $b = 2px, $c = var(--theme), $h = var(--accent)) &::-webkit-scrollbar height: $w width: $w &::-webkit-scrollbar-track-piece background: transparent &::-webkit-scrollbar-thumb background: $c cursor: pointer border-radius: $b &:hover background: $h // 代码块滚动条 scrollbar-codeblock() &::-webkit-scrollbar height: 4px width: 4px &::-webkit-scrollbar-track-piece background: transparent &::-webkit-scrollbar-thumb background: transparent cursor: pointer border-radius: $border-codeblock &:hover &::-webkit-scrollbar-thumb background: var(--color-text-a50) &:hover background: var(--accent)