hexo-theme-keep/source/css/layout/common/basic.styl

72 lines
1.2 KiB
Stylus
Raw Normal View History

@require 'variables.styl'
2020-04-01 12:09:06 +08:00
@require 'animated.styl'
@require 'magic-theme.styl'
html, body {
margin: 0;
padding: 0;
color: var(--normal-text-color);
if (hexo-config('magic.enable') == true) {
background: var(--magic-background-color);
} else {
background: var(--background-color);
}
font-size: $default-font-size;
font-family: $default-font-family;
font-weight: $default-font-weight;
2020-04-01 22:42:24 +08:00
line-height: $default-font-line-height;
}
::selection {
background: var(--selection-color);
color: #fff;
}
2020-04-03 18:18:42 +08:00
ul,
li,
ol {
padding: 0;
margin: 0;
list-style: none;
}
a {
text-decoration: none;
color: var(--normal-text-color);
}
a:hover, a:active {
2020-04-03 18:18:42 +08:00
color: var(--primary-color);
}
button {
padding: 0;
margin: 0;
border: 0;
outline: none;
cursor: pointer;
background: transparent;
}
.btn {
display: inline-block;
position: relative;
text-align: center;
cursor: pointer;
white-space: nowrap;
border-radius: 5px;
padding: 0.5em 1em;
background: var(--background-color);
transition();
magic-style(1.1);
&:hover {
color: var(--background-color);
background: var(--primary-color);
}
//&:hover {
// color: var(--primary-color);
// border: 1px solid var(--primary-color);
//}
}