样式调整

This commit is contained in:
fofolee 2019-05-07 01:00:54 +08:00
parent 12856e5d01
commit ef3ea6197b
5 changed files with 5718 additions and 16 deletions

3855
assets/jQuery/jQuery.css Normal file

File diff suppressed because it is too large Load Diff

View File

@ -206,10 +206,6 @@
margin: .67em 0; margin: .67em 0;
} }
#manual img {
border-style: none;
}
#manual code, #manual code,
#manual kbd, #manual kbd,
#manual pre { #manual pre {
@ -382,7 +378,7 @@
#manual code, #manual code,
#manual pre { #manual pre {
font-family: Monaco, Consolas, Liberation Mono, Menlo, Courier, monospace; font-family: Monaco, Consolas, Liberation Mono, Menlo, Courier, monospace;
font-size: 90%; font-size: 95%;
} }
#manual pre { #manual pre {
@ -583,7 +579,7 @@
#manual h3 { #manual h3 {
font-size: 1.1em; font-size: 1.1em;
background: #E1F5FE; background: #E1F5FE;
padding: 1px 0px 1px 5px; padding: 2px 0px 2px 5px;
border-radius: 3px; border-radius: 3px;
border: 1px solid #03A9F4; border: 1px solid #03A9F4;
color: #37474F; color: #37474F;
@ -670,14 +666,18 @@
border-top: 1px solid #c6cbd1; border-top: 1px solid #c6cbd1;
} }
#manual table tr:nth-child(2n) {
background-color: #f6f8fa;
}
#manual img { #manual img {
display: none; display: none;
} }
#manual img.whitelist {
display: block;
}
#manual table tr:nth-child(2n) {
background-color: #f6f8fa;
}
#manual img[align=right] { #manual img[align=right] {
padding-left: 20px; padding-left: 20px;
} }
@ -732,6 +732,11 @@ pre {
padding: 16px; padding: 16px;
} }
.phpcode code{
display: block;
padding: 10px 20px;
}
pre code { pre code {
background-color: transparent; background-color: transparent;
border: 0; border: 0;

View File

@ -136,7 +136,7 @@
#options table td { #options table td {
border-collapse: collapse; border-collapse: collapse;
padding: 3px; padding: 3px;
word-break: break-all; /* word-break: break-all; */
} }
#options table tr:nth-child(odd) { #options table tr:nth-child(odd) {

View File

@ -15,6 +15,9 @@
#mainlist .name { #mainlist .name {
padding-top: 10px; padding-top: 10px;
font-family: "consolas"; font-family: "consolas";
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
#mainlist .type { #mainlist .type {
@ -60,18 +63,20 @@
overflow-x: hidden; overflow-x: hidden;
} }
#manual .load { .load {
position: absolute; position: absolute;
top: 40%; bottom: 20px;
left: 0; /* left: 0; */
right: 0; right: 20px;
line-height: 1; line-height: 1;
margin-top: -.6em; margin-top: -.6em;
font-size: 4rem; font-size: 2rem;
font-weight: 300; font-weight: 300;
letter-spacing: -.125rem; letter-spacing: -.125rem;
color: #BDBDBD; color: #BDBDBD;
text-align: center; text-align: center;
background: white;
display: none;
} }
.founds { .founds {

1837
assets/vue/vue.css Normal file

File diff suppressed because it is too large Load Diff