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