]> gitweb.factorcode.org Git - factor.git/blob - basis/help/html/stylesheet.css
help.html: make these match new wiki css.
[factor.git] / basis / help / html / stylesheet.css
1 html {
2     box-sizing: border-box;
3 }
4
5 *, *:before, *:after {
6     box-sizing: inherit;
7 }
8
9 body, h1, h2, h3, h4, h5, h6, p, ol, ul {
10     margin: 0;
11     padding: 0;
12 }
13
14 a, .link { color: #104e8b; }
15 a:link, a:visited, a:active, .link { text-decoration: none; }
16 a:hover, .link:hover { text-decoration: underline; }
17
18 body {
19     font-family: sans-serif;
20     line-height: 140%;
21 }
22
23 input {
24     border: 1px solid #999999;
25     font-size: smaller;
26     border-radius: 3px;
27 }
28
29 img {
30     vertical-align: middle;
31 }
32
33 table {
34     border-collapse: collapse;
35     margin-top: 5px;
36     margin-bottom: 5px;
37 }
38
39 tr:hover {
40     background-color: #f5f5f5;
41 }
42
43 .navbar {
44     margin: 0;
45     padding: 15px;
46     border-bottom: 1px solid #ccc;
47 }
48
49 .navbar a {
50     margin-right: 10px;
51 }
52
53 #container {
54     max-width: 800px;
55 }
56
57 .page {
58     margin: 15px;
59 }