This commit is contained in:
Jesse-Ma
2022-07-21 18:51:30 +08:00
parent 0bdd2eea5c
commit deb1fbe49d
22 changed files with 26943 additions and 346 deletions

View File

@@ -36,4 +36,77 @@ body {
background: red !important;
}
.showBlock{
display: block;
}
.hideBlock{
display: none;
}
#noteText {
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;
}
#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;
}
.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;
}
</style>