]> gitweb.factorcode.org Git - factor.git/blob - basis/help/html/stylesheet.css
help.html: adding back the link to factorcode.org.
[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 tr:hover {
40     background-color: #f5f5f5;
41 }
42
43 .navbar {
44     margin: 0;
45     padding: 15px;
46     padding-top: 10px;
47     padding-bottom: 10px;
48     line-height: 150%;
49     border-bottom: 1px solid #ccc;
50     background-color: #f5f5f5;
51 }
52
53 .navbar a {
54     margin-right: 10px;
55 }
56
57 .navbar form a {
58     margin-left: 10px;
59     font-size: 1.0em;
60     font-weight: bold;
61 }
62
63 #container {
64     max-width: 800px;
65 }
66
67 .page {
68     margin: 15px;
69 }
70
71 .page img {
72     width: 16px;
73     height: 16px;
74 }
75
76 @media screen and (max-width: 480px) {
77
78     input {
79         font-size: smaller;
80     }
81
82     input[type=text] {
83         width: 100px;
84     }
85 }
86
87 @media screen and (max-width: 600px) {
88
89     .navbar form a {
90         display: none;
91     }
92 }