hexo-theme-keep/source/css/layout/_partial/tools.styl

74 lines
1.4 KiB
Stylus
Raw Normal View History

2020-04-25 11:16:58 +08:00
@require "../common/variables.styl";
@require "../common/magic-theme.styl";
@require "../common/magic-theme.styl";
$li-border-radius = 5px;
2020-04-26 15:16:53 +08:00
$li-margin-bottom = 12px;
.tools-container {
.tools-list {
li {
cursor: pointer;
2020-04-26 15:16:53 +08:00
width: $tool-button-width;
height: $tool-button-width;
border-radius: $li-border-radius;
font-size: 1.2em;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: $li-margin-bottom;
background: var(--background-color);
2020-09-05 23:08:03 +08:00
&:last-child {
margin-bottom: 0;
}
if (hexo-config('magic.enable') == true) {
2020-04-30 00:14:16 +08:00
magic-style(1.1, 1.1);
} else {
border: 1px solid var(--border-color);
}
&:hover {
transition();
color: var(--background-color);
background: var(--primary-color);
}
2020-04-15 22:30:24 +08:00
&.rss {
2020-04-15 22:30:24 +08:00
a {
border-radius: $li-border-radius;
2020-04-15 22:30:24 +08:00
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
&:hover {
2020-04-25 11:16:58 +08:00
transition();
color: var(--background-color);
background: var(--primary-color);
}
2020-04-15 22:30:24 +08:00
}
}
2020-09-05 23:08:03 +08:00
&.scroll-to-top {
display: none;
}
2020-09-07 15:56:13 +08:00
&.page-aside-toggle {
display: none;
2020-09-07 16:25:37 +08:00
+ils-tablet() {
display: none !important;
}
2020-09-07 15:56:13 +08:00
}
}
}
2020-09-05 23:08:03 +08:00
}