You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
1.7 KiB
116 lines
1.7 KiB
<template>
|
|
<x-page>
|
|
<x-navbar>
|
|
<text class="navbar-text">LuMi</text>
|
|
</x-navbar>
|
|
<x-calendar>
|
|
</x-calendar>
|
|
</x-page>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.navbar-text {
|
|
font-size: 45rpx;
|
|
font-family: ZhanKuKuaiLeTi;
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 25rpx 0 15rpx;
|
|
margin-left: -20rpx;
|
|
|
|
.tab {
|
|
margin-left: 20rpx;
|
|
|
|
.tab-text {
|
|
font-size: 45rpx;
|
|
font-family: ZhanKuKuaiLeTi;
|
|
}
|
|
}
|
|
}
|
|
|
|
.clear {
|
|
padding: 20rpx 100rpx;
|
|
}
|
|
|
|
.list {
|
|
.item {
|
|
padding: 20rpx 100rpx;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.label {
|
|
flex: 1;
|
|
width: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.rili {
|
|
margin-top: -30rpx;
|
|
|
|
.grid {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-left: -30rpx;
|
|
margin-top: -30rpx;
|
|
padding: 30rpx 80rpx 0;
|
|
|
|
.grid-item {
|
|
width: 55rpx;
|
|
margin-left: 30rpx;
|
|
margin-top: 30rpx;
|
|
border-radius: 15rpx;
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
|
|
.grid-item-box {
|
|
padding-bottom: 100%;
|
|
position: relative;
|
|
|
|
.grid-item-content {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.grid-item-text {
|
|
color: rgba(0, 0, 0, .08);
|
|
font-size: 25rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.float-btn {
|
|
position: fixed;
|
|
z-index: 99;
|
|
left: 50%;
|
|
transform: translate(-50%);
|
|
bottom: 100rpx;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 100rpx;
|
|
background-color: white;
|
|
box-shadow:
|
|
0 2px 10px rgba(0, 0, 0, 0.1);
|
|
|
|
.float-btn-text {
|
|
font-size: 25rpx;
|
|
}
|
|
}
|
|
</style>
|