diff --git a/source/css/layout/common/site-info.styl b/source/css/layout/common/site-info.styl index ab2d736..d543e6b 100644 --- a/source/css/layout/common/site-info.styl +++ b/source/css/layout/common/site-info.styl @@ -31,7 +31,7 @@ $description-font-size = 16px .description { - padding: 5px; + padding: 10px; font-size: $description-font-size; } diff --git a/source/css/layout/common/valine.styl b/source/css/layout/common/valine.styl index 4c171d9..eff264b 100644 --- a/source/css/layout/common/valine.styl +++ b/source/css/layout/common/valine.styl @@ -1,13 +1,63 @@ +@require '../variables.styl' .valine-container { - .vcontrol { - .col-20 a { - display: none; + + #valine { + + .vheader { + + .vinput { + + &:focus { + border-bottom: 1px solid $a-hover-color !important; + } + } + } + + + .vcontrol { + .col-20 a { + display: none; + } + + .col-80 { + button.vsubmit { + background: transparent !important; + color: $default-font-color !important; + border: 1px solid $default-font-color !important; + + + &:hover { + color: $a-hover-color !important; + border: 1px solid $a-hover-color !important; + } + } + + } + + + } + + + .vlist { + .vcard { + .vhead { + .vnick { + + &::before { + background: $a-hover-color !important; + } + color: $a-hover-color; + } + } + } + } + + .info { + .txt-right { + display none + } } } - .info { - .txt-right { - display none - } - } + } \ No newline at end of file diff --git a/source/css/layout/variables.styl b/source/css/layout/variables.styl index b8118df..11bc267 100644 --- a/source/css/layout/variables.styl +++ b/source/css/layout/variables.styl @@ -53,7 +53,7 @@ $nav-selected-color = #4a4a4a $a-color = #666 // 超链接a标签悬浮颜色 -$a-hover-color = #2273d8 +$a-hover-color = #135bce // 按钮颜色 $button-color = $default-font-color