Completed AISL handbook
This commit is contained in:
parent
8ed43da0be
commit
096b5f8ef4
1652
aisl/handbook.html
1652
aisl/handbook.html
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
|
@ -27,7 +27,7 @@ section, summary, ul, li, code, blockquote, .section
|
||||||
|
|
||||||
body,
|
body,
|
||||||
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav,
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav,
|
||||||
section, summary, ul, li, code, blockquote, img, h1, h2, h3, h4, p
|
section, summary, ul, li, code, blockquote, img, h1, h2, h3, h4, h5, p
|
||||||
{
|
{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -121,6 +121,55 @@ h3, .h3-like {
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h4, .h4-like {
|
||||||
|
font-family: 'Jura', sans-serif;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h5, .h5-like {
|
||||||
|
font-family: 'Jura', sans-serif;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: #f8f8fc;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 20px;
|
||||||
|
font-size: 1em;
|
||||||
|
font-family: monospace;
|
||||||
|
white-space: pre;
|
||||||
|
margin: 0 0 1em;
|
||||||
|
tab-size: 4;
|
||||||
|
-moz-tab-size: 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
code.inline {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
display: inline;
|
||||||
|
color: #9f353d;
|
||||||
|
}
|
||||||
|
|
||||||
|
code a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
code .keyword {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #8c0915;
|
||||||
|
}
|
||||||
|
|
||||||
|
code .string {
|
||||||
|
color: #33692b;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
border: 0;
|
||||||
|
border-top: 1px solid #d9dfe3;
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
|
@ -367,10 +416,18 @@ h3, .h3-like {
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-content h1 {
|
.text-content h1 {
|
||||||
padding: 0 0 1em;
|
padding: 0 0 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-content h2 {
|
.text-content h2 {
|
||||||
|
padding: 1em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-content h3 {
|
||||||
|
padding: .7em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-content h4 {
|
||||||
padding: .5em 0;
|
padding: .5em 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -403,13 +460,33 @@ h3, .h3-like {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.code-doc {
|
||||||
|
padding: 0 0 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-doc p {
|
||||||
|
padding: 0 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.code-doc .h5-like {
|
||||||
|
font-weight: normal;
|
||||||
|
padding: .5em 20px .5em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-doc ul {
|
||||||
|
padding: 0 40px;
|
||||||
|
list-style-type: square;
|
||||||
|
}
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
.main-content {
|
.main-content {
|
||||||
min-width: 320px;
|
min-width: 320px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.anouncement {
|
.anouncem ent {
|
||||||
max-width: 1366px;
|
max-width: 1366px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue