]> gitweb.factorcode.org Git - factor.git/blob - basis/help/html/stylesheet.css
help.html: assume even padding started out odd.
[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 { text-decoration: none; color: #104e8b; }
15 a:visited { text-decoration: none; color: #104e8b; }
16 a:active { text-decoration: none; color: #104e8b; }
17 a:hover { text-decoration: underline; color: #104e8b; }
18
19 input {
20     border: 1px solid #999999;
21     font-size: smaller;
22     border-radius: 3px;
23 }
24
25 img {
26     vertical-align: middle;
27 }
28
29 table {
30     border-collapse: collapse;
31     margin-top: 5px;
32     margin-bottom: 5px;
33 }
34
35 tr:hover {
36     background-color: #f5f5f5;
37 }
38
39 .navbar {
40     background-color: #f3f2ea;
41     padding: 10px;
42     border-bottom: 1px solid #ccc;
43     font-family: sans-serif;
44 }
45
46 .navbar a {
47     border-right: 1px solid #999;
48     padding-right: 10px;
49     margin-right: 5px;
50 }
51
52 .page {
53     margin: 20px;
54     max-width: 800px;
55     line-height: 140%;
56 }