mirror of
https://github.com/envmodules/modules.git
synced 2026-06-10 00:56:30 +08:00
66 lines
967 B
CSS
66 lines
967 B
CSS
html {
|
|
color: black;
|
|
padding: 20px 10px 10px 10px;
|
|
}
|
|
body {
|
|
font-size: 14pt;
|
|
line-height: 1.4em;
|
|
font-family: Georgia, serif;
|
|
}
|
|
|
|
ul ul {
|
|
margin-bottom: 0.5em
|
|
}
|
|
dd {
|
|
margin-left: 2em;
|
|
}
|
|
ul {
|
|
list-style-type: square;
|
|
}
|
|
dt {
|
|
font-weight: bold;
|
|
margin-bottom: .1em;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: normal;
|
|
border-bottom: 1px solid black;
|
|
}
|
|
h1 {
|
|
font-size: 24pt;
|
|
}
|
|
h2 {
|
|
font-size: 18pt;
|
|
}
|
|
h3 {
|
|
font-size: 16pt;
|
|
}
|
|
h4 h5 h6 {
|
|
font-size: 14pt;
|
|
}
|
|
|
|
blockquote {
|
|
padding: 0 1.6em;
|
|
color: #666;
|
|
}
|
|
p code {
|
|
font-size: 12pt;
|
|
color: #333;
|
|
background-color: #f5f5f5;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
pre {
|
|
display: block;
|
|
padding: 9.5px;
|
|
margin: 0 0 10px;
|
|
font-size: 12pt;
|
|
line-height: 1.2em;
|
|
color: #333;
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
background-color: #f5f5f5;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|