117 lines
2.2 KiB
Vue
117 lines
2.2 KiB
Vue
<template>
|
|
<div id="app">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: {}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
.ivu-btn:focus {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
#app {
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
font-size: medium;
|
|
}
|
|
|
|
body {
|
|
-webkit-text-size-adjust: 100% !important;
|
|
font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
|
|
"PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei",
|
|
sans-serif;
|
|
background-color: #dddddd;
|
|
}
|
|
|
|
.monoFt {
|
|
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
}
|
|
|
|
.showBlock {
|
|
display: block;
|
|
}
|
|
|
|
.hideBlock {
|
|
display: none;
|
|
}
|
|
|
|
#noteText {
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
word-wrap: break-word;
|
|
color: black;
|
|
padding: 10px;
|
|
vertical-align: top;
|
|
width: 100%;
|
|
height: auto;
|
|
background: white;
|
|
min-width: 200px;
|
|
border-radius: 0px;
|
|
overflow-y: auto;
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
|
/*min-height: 400px;*/
|
|
font-size: 14px;
|
|
border: 1px solid white;
|
|
}
|
|
|
|
|
|
#noteText::selection {
|
|
background: #ed4014;
|
|
color: white;
|
|
}
|
|
|
|
#noteText::-moz-selection {
|
|
background: #ed4014;
|
|
color: white;
|
|
}
|
|
|
|
#noteText br::selection {
|
|
background: #ed4014;
|
|
color: white;
|
|
}
|
|
|
|
#noteText br::-moz-selection {
|
|
background: #ed4014;
|
|
color: white;
|
|
}
|
|
|
|
.noteUrl {
|
|
color: #ed4014;
|
|
font-weight: bold;
|
|
font-family: Merriweather "Bitstream Vera Sans Mono", Consolas, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei";
|
|
|
|
}
|
|
|
|
.noteKey {
|
|
color: #ed4014;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
font-family: "Bitstream Vera Sans Mono", Consolas, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei"
|
|
}
|
|
|
|
.showBlock {
|
|
display: block;
|
|
}
|
|
|
|
.hideBlock {
|
|
display: none;
|
|
}
|
|
|
|
button span {
|
|
font-size: 15px !important;
|
|
font-family: apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;
|
|
margin-bottom: 6px;
|
|
}
|
|
</style>
|