2020-04-02 20:37:34 +08:00
|
|
|
@require '../common/variables.styl'
|
|
|
|
|
2020-04-02 11:01:24 +08:00
|
|
|
.tools-container {
|
2020-04-02 20:37:34 +08:00
|
|
|
|
|
|
|
.tools-list {
|
2020-04-02 11:01:24 +08:00
|
|
|
li {
|
|
|
|
cursor: pointer;
|
2020-04-02 20:37:34 +08:00
|
|
|
padding: 5px;
|
|
|
|
border-radius: 50%;
|
2020-04-02 22:07:55 +08:00
|
|
|
border: 1px solid var(--third-text-color);
|
2020-04-02 20:37:34 +08:00
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
2020-04-07 11:57:53 +08:00
|
|
|
font-size: 1.2em;
|
2020-04-02 20:37:34 +08:00
|
|
|
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%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-02 20:37:34 +08:00
|
|
|
&:hover {
|
|
|
|
color: var(--primary-color);
|
|
|
|
border-color: var(--primary-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-04-02 11:01:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|