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

41 lines
727 B
Stylus
Raw Normal View History

@require '../common/variables.styl'
.tools-container {
.tools-list {
li {
cursor: pointer;
padding: 5px;
border-radius: 50%;
2020-04-02 22:07:55 +08:00
border: 1px solid var(--third-text-color);
width: 26px;
height: 26px;
font-size: 1.2em;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 12px;
2020-04-15 22:30:24 +08:00
&.rss {
a {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
}
&:hover {
color: var(--primary-color);
border-color: var(--primary-color);
}
&:last-child {
margin-bottom: 0;
}
}
}
}