]> gitweb.factorcode.org Git - factor.git/blob - basis/help/html/stylesheet.css
help.html: raise line-height to 150%.
[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 a, .link { color: #104e8b; }
10 a:link, a:visited, a:active, .link { text-decoration: none; }
11 a:hover, .link:hover { text-decoration: underline; }
12
13 body {
14     margin: 0;
15     font-family: sans-serif;
16     line-height: 150%;
17 }
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     margin: 0;
41     padding: 15px;
42     border-bottom: 1px solid #ccc;
43 }
44
45 .navbar a {
46     margin-right: 10px;
47 }
48
49 #container {
50     max-width: 800px;
51 }
52
53 .page {
54     margin: 15px;
55 }