1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-23 04:42:24 +03:00

Category header titles restyled

This commit is contained in:
Avele 2019-07-07 13:55:31 +04:00
parent 0bf980156e
commit 026b04d979

View File

@ -20,13 +20,10 @@
<span>RSS feed for all new items in this category</span>
</v-tooltip>
<router-link
class="category-top-link mr-3"
:to="categoryUrl"
>
<h2 class="category-name-title mr-3">
{{categoryTitle}}
</router-link>
<h2 class="category-top-group"> {{categoryGroup}} </h2>
</h2>
<h2 class="category-group-title"> {{categoryGroup}} </h2>
</div>
<v-menu
@ -169,20 +166,15 @@ export default class CategoryHeader extends Vue {
font-size: 1px;
}
.category-top-link {
.category-name-title {
font-size: 22px;
font-weight: 600;
font-weight: 800;
text-decoration: none;
color: #979797;
cursor: pointer;
transition: all ease-in-out 0.25s;
color: #2b2a2a;
letter-spacing: -1px;
}
.category-top-link:hover {
color: #000;
}
.category-top-group {
.category-group-title {
font-size: 16px;
font-weight: normal;
}
@ -225,10 +217,10 @@ export default class CategoryHeader extends Vue {
}
@media (max-width: 425px) {
.category-top-link {
.category-name-title {
font-size: 18px;
}
.category-top-group {
.category-group-title {
font-size: 14px;
}
}