]> gitweb.factorcode.org Git - factor.git/blob - extra/websites/concatenative/page.css
webapps: updating boilerplate navbar/navrow
[factor.git] / extra / websites / concatenative / page.css
1 html {
2     box-sizing: border-box;
3 }
4
5 *, *:before, *:after {
6     box-sizing: inherit;
7 }
8
9 body {
10     margin: 0;
11 }
12
13 body, button {
14     font-size: 12pt;
15     font-family: sans-serif;
16 }
17
18 textarea {
19     font-size: 12pt;
20 }
21
22 table {
23     border-spacing: 0;
24     border-collapse: collapse;
25 }
26
27 pre {
28     overflow: auto;
29     font-size: smaller;
30     line-height: 125%;
31 }
32
33 .link-button {
34     padding: 0;
35     background: none;
36     border: none;
37 }
38
39 a, .link { color: #2A5DB0; }
40 a:link, a:visited, a:active, .link { text-decoration: none; }
41 a:hover, .link:hover { text-decoration: underline; }
42
43 #container {
44     max-width: 1000px;
45 }
46
47 .error { color: #a00; }
48
49 .errors li { color: #a00; }
50
51 .field-label {
52     text-align: right;
53 }
54
55 .inline {
56     display: inline;
57 }
58 .navbar {
59     border-bottom: 1px solid #ccc;
60     background-color: #f5f5f5;
61 }
62
63 .navrow {
64     max-width: 1000px;
65     position: relative;
66     left: calc(max(-500px,-50%) + 50%);
67     margin: 0;
68     padding: 10px 15px 10px 15px;
69 }
70
71 .navrow a, .navrow .link {
72     margin-right: 10px;
73 }
74
75 .page {
76     max-width: 1000px;
77     position: relative;
78     left: calc(max(-500px,-50%) + 50%);
79     padding: 15px;
80 }
81
82 .big-field-label {
83     vertical-align: top;
84 }