mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-28 20:35:50 +08:00
devdocs 样式调整
This commit is contained in:
parent
b555f14c5c
commit
0c0bdbab6c
7
assets/devdocs.css
Normal file
7
assets/devdocs.css
Normal file
File diff suppressed because one or more lines are too long
@ -50,7 +50,7 @@
|
|||||||
color: #24292e;
|
color: #24292e;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-family: Monaco, Arial;
|
font-family: Monaco, Arial;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
@ -382,7 +382,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: 14px;
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#manual pre {
|
#manual pre {
|
||||||
@ -567,7 +567,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#manual h1 {
|
#manual h1 {
|
||||||
font-size: 2em;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#manual h1,
|
#manual h1,
|
||||||
@ -581,7 +581,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#manual h3 {
|
#manual h3 {
|
||||||
font-size: 1.25em;
|
font-size: 1.1em;
|
||||||
|
background: #E1F5FE;
|
||||||
|
padding: 1px 0px 1px 5px;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: 1px solid #03A9F4;
|
||||||
|
color: #37474F;
|
||||||
|
}
|
||||||
|
|
||||||
|
#manual h3 code{
|
||||||
|
background: unset;
|
||||||
|
padding: 0;
|
||||||
|
color: #37474F;
|
||||||
}
|
}
|
||||||
|
|
||||||
#manual h4 {
|
#manual h4 {
|
||||||
@ -599,7 +610,7 @@
|
|||||||
|
|
||||||
#manual ol,
|
#manual ol,
|
||||||
#manual ul {
|
#manual ul {
|
||||||
padding-left: 2em;
|
padding-left: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#manual ol ol,
|
#manual ol ol,
|
||||||
@ -677,7 +688,7 @@
|
|||||||
|
|
||||||
code {
|
code {
|
||||||
background-color: #f8f8f8;
|
background-color: #f8f8f8;
|
||||||
color: #e96900;
|
color: #607D8B;
|
||||||
padding: 3px 5px;
|
padding: 3px 5px;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
|
@ -148,7 +148,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#options .keyword {
|
#options .keyword {
|
||||||
display: inline-block;
|
/* display: inline-block; */
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #333;
|
color: #333;
|
||||||
border: 1px solid #eee;
|
border: 1px solid #eee;
|
||||||
@ -157,7 +157,7 @@
|
|||||||
line-height: 22px;
|
line-height: 22px;
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
background-color: #f3f3f3;
|
background-color: #f3f3f3;
|
||||||
margin-right: 5px
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#options .logo{
|
#options .logo{
|
||||||
@ -181,6 +181,11 @@
|
|||||||
transition: 0.5s;
|
transition: 0.5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#options .footBtn.disabled {
|
||||||
|
cursor: no-drop;
|
||||||
|
background: #9b9b9b;
|
||||||
|
}
|
||||||
|
|
||||||
#options .foot{
|
#options .foot{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
@ -192,10 +197,6 @@
|
|||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#options span{
|
|
||||||
margin-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#options span.editBtn{
|
#options span.editBtn{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -60,6 +60,20 @@
|
|||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#manual .load {
|
||||||
|
position: absolute;
|
||||||
|
top: 40%;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
line-height: 1;
|
||||||
|
margin-top: -.6em;
|
||||||
|
font-size: 4rem;
|
||||||
|
font-weight: 300;
|
||||||
|
letter-spacing: -.125rem;
|
||||||
|
color: #BDBDBD;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.founds {
|
.founds {
|
||||||
background-color: #ff572236;
|
background-color: #ff572236;
|
||||||
color: #fd4005;
|
color: #fd4005;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user