42 lines
534 B
CSS
42 lines
534 B
CSS
|
body {
|
||
|
font-family: "Verdana";
|
||
|
font-size: 14px;
|
||
|
max-width: 80%;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3 {
|
||
|
color: #4360DF;
|
||
|
}
|
||
|
|
||
|
div.sidebar {
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
pre {
|
||
|
padding: 15px;
|
||
|
}
|
||
|
div.qmlproto {
|
||
|
padding-left: 15px;
|
||
|
padding-right: 15px;
|
||
|
}
|
||
|
pre, div.qmlproto {
|
||
|
font-family: "Courier New";
|
||
|
font-size: 20px;
|
||
|
margin-left: 2em;
|
||
|
background-color: #F0F2F5;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
margin-top: 2em;
|
||
|
margin-bottom: 2em;
|
||
|
}
|
||
|
|
||
|
p.header {
|
||
|
margin-bottom: -1em;
|
||
|
}
|
||
|
p.footer {
|
||
|
text-align: right;
|
||
|
margin-top: -1em;
|
||
|
}
|