]> gitweb.factorcode.org Git - factor.git/blob - basis/help/html/stylesheet.css
webapps.help: matching style for navbar.
[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     padding-top: 10px;
43     padding-bottom: 10px;
44     line-height: 150%;
45     border-bottom: 1px solid #ccc;
46 }
47
48 .navbar a {
49     margin-right: 10px;
50 }
51
52 #container {
53     max-width: 800px;
54 }
55
56 .page {
57     margin: 15px;
58 }