Files
flagnote-web/src/App.vue
2023-02-24 17:33:06 +08:00

132 lines
2.4 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;
}
.noteHeader {
background-color: white;
width:100%;
height:40px;
}
.noteHeaderShade {
background: linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,1));
width:100%;
height:40px;
border-bottom: dashed #ed4014 1px;
}
#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: 15px;
border: 0px;
}
#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 {
margin-left: 0px !important;
font-size: 16px !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>