[S] Make "Other" links cards
This commit is contained in:
@@ -5,4 +5,5 @@ $color-text-special: #ff8373
|
|||||||
// Lower means lighter
|
// Lower means lighter
|
||||||
$color-bg-6: #ffeedb
|
$color-bg-6: #ffeedb
|
||||||
$color-bg-5: #fff4eb
|
$color-bg-5: #fff4eb
|
||||||
|
$color-card: #fdf9f1
|
||||||
$color-bg-4: #fffcf9
|
$color-bg-4: #fffcf9
|
||||||
|
|||||||
+21
-15
@@ -1,15 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="Others" class="general-page">
|
<div id="Others" class="general-page">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<h2>更多链接</h2>
|
<h2>更多链接</h2>
|
||||||
<div class="subtitle">欢迎点进来看看</div>
|
<div class="subtitle">欢迎点进来看看</div>
|
||||||
|
</div>
|
||||||
|
<div class="links">
|
||||||
|
<router-link class="rlink" to="/kitchen-menu">🍳 小桂桂的私房菜 菜单</router-link>
|
||||||
|
<router-link class="rlink" to="/friends">🎎 朋友们</router-link>
|
||||||
|
<a href="http://status.hydev.org/">🔌 看看服务器们过得怎么样</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="links">
|
|
||||||
<router-link class="rlink" to="/kitchen-menu">🍳 小桂桂的私房菜 菜单</router-link>
|
|
||||||
<router-link class="rlink" to="/friends">🎎 朋友们</router-link>
|
|
||||||
<a href="http://status.hydev.org/">🔌 看看服务器们过得怎么样</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
@@ -23,15 +23,21 @@ export default class Others extends Vue
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="sass" scoped>
|
<style lang="sass" scoped>
|
||||||
|
@import "src/css/global"
|
||||||
@import "src/css/colors"
|
@import "src/css/colors"
|
||||||
@import "src/css/responsive"
|
@import "src/css/responsive"
|
||||||
|
|
||||||
.links
|
.links
|
||||||
display: flex
|
display: flex
|
||||||
flex-direction: column
|
gap: 10px
|
||||||
align-items: flex-start
|
flex-direction: column
|
||||||
|
align-items: flex-start
|
||||||
|
|
||||||
a
|
a
|
||||||
color: $color-text-main
|
@extend .card
|
||||||
margin-bottom: 0.5em
|
@extend .clickable
|
||||||
|
|
||||||
|
color: $color-text-main
|
||||||
|
text-decoration: none
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user