]> gitweb.factorcode.org Git - factor.git/blob - basis/help/html/stylesheet.css
help.html: remove tr:hover background-color
[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     border-radius: 3px;
22     font-size: 1.0em;
23 }
24
25 input[type=text] {
26     width: 200px;
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 .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     background-color: #f5f5f5;
47 }
48
49 .navbar a {
50     margin-right: 10px;
51 }
52
53 .navbar form a {
54     margin-left: 10px;
55     font-size: 1.0em;
56     font-weight: bold;
57 }
58
59 #container {
60     max-width: 800px;
61 }
62
63 .page {
64     margin: 15px;
65 }
66
67 .page img {
68     width: 16px;
69     height: 16px;
70 }
71
72 @media screen and (max-width: 480px) {
73
74     input {
75         font-size: smaller;
76     }
77
78     input[type=text] {
79         width: 100px;
80     }
81 }
82
83 @media screen and (max-width: 600px) {
84
85     .navbar form a {
86         display: none;
87     }
88 }