This commit is contained in:
satori 2022-02-06 12:08:19 +08:00
parent 8c02b1e72f
commit 0744259dad
3 changed files with 32 additions and 9 deletions

View File

@ -1,8 +1,6 @@
// 调色盘 @satori (不涉及默认元素操作) // 调色盘 @satori
//
// 背景色 基调为纯白 #ffffff // 背景色 基调为纯白 #ffffff
// 背景色 主调为薄灰 #f5f6f7 // 背景色 主调为薄灰 #f5f6f7
//
// 前景色 基调为深灰 #222222 // 前景色 基调为深灰 #222222
// 前景色 主调为厚黑 #111111 // 前景色 主调为厚黑 #111111
@ -13,21 +11,24 @@
--color-default: rgba(0,30,38, 1) --color-default: rgba(0,30,38, 1)
--color-main: rgba(0,30,38, 1) --color-main: rgba(0,30,38, 1)
// 仪式 // 仪式(突出重点的展示)
.ceremony .ceremony
padding-top: 10rem padding-top: 10rem
padding-bottom: 10rem padding-bottom: 10rem
margin: 10rem 0 margin: 10rem 0
background: var(--background-main) background: var(--background-main)
// 界限 // 界限(对不同屏幕的使用宽度)
.circumscription .circumscription
transition: all .25s linear
@media (min-width: 480px) @media (min-width: 480px)
margin: 0 2rem margin: 0 2rem
@media (min-width: 1024px)
max-width: 980px
margin-left: auto
margin-right: auto
@media (min-width: 1280px) @media (min-width: 1280px)
max-width: 1200px max-width: 1200px
margin-left: auto margin-left: auto
margin-right: auto margin-right: auto
// 汇聚 converge // 汇聚 converge
// 过渡 transition: all .75s linear

View File

@ -99,6 +99,7 @@ export default {
line-height: 2rem line-height: 2rem
text-align: center text-align: center
font-weight: 600 font-weight: 600
white-space: nowrap
>.online >.online
.navbar-user .navbar-user
.userinfo .userinfo

View File

@ -1,4 +1,25 @@
<template lang="pug"> <template lang="pug">
.docs-index .docs-index
p Hello World! p Hello World! かな
</template> p Kana 的基本定位是用于快速构建并迭代尝试性质的想法, MVP (产品最小化可行性验证)
p 因而专注于以最少的易于理解的逻辑提供充分的且便捷的调用/修改/扩展方法
p 适用于前后端分离的WEB项目和APP
p ------------------------------
p 如果一开始就将大量精力注入到繁琐的细节问题中(假想中的困难),
p 大概率没有机会走到遭遇未能想象的困难那一步(真实的困难)
p 人不能想象出自己所不了解的事物,
p 在作选择时认清自己当前的真实需求, 这一点尤其重要
p ------------------------------
p 特性:
p 1. 使用内嵌数据库(nedb), 不需要任何配置, 一步安装
p 2. 任意扩展对象, 所有对象都拥有相同的基本属性和处理的方法
p 3. 支持无限嵌套 (这并不可怕
p 4. 支持导出数据
p ------------------------------
p 如果在阅读文档时感到困惑, 请到论坛提问(建议), 或加入群聊:
p QQ群
p 微信群
p TG群
p 不必担心是否因为自己未考虑到什么, 也许其它阅读者也遇到了同样的困惑
p 因此,通常你的提问会被补充到文档上
</template>