start next iteration of the site, now available at bandalis.org
[~bandali/bndl.org] / style.css
CommitLineData
ef72be3e
AB
1/* for old browsers */
2article, aside, footer, header, nav, section {
3 display: block;
4}
5
cb742bb6 6body {
ef72be3e
AB
7 font-family: FreeSans, sans-serif;
8 padding: 1em;
9}
10
11body > header {
12 margin-bottom: 2em !important;
13}
14#title {
15 font-size: 2.1em;
16 font-weight: normal;
17 margin-bottom: 0;
18}
19#title:after {
20 content: ".org";
21 color: #dadada;
cb742bb6 22}
ef72be3e
AB
23#subtitle {
24 display: inline;
25 font-weight: normal;
26 font-size: 1.2em;
cb742bb6 27 color: #444;
cb742bb6 28}
ef72be3e
AB
29
30a {
31 text-decoration: none;
32 outline: 0;
cb742bb6 33}
ef72be3e
AB
34
35article h3 {
36 font-weight: normal;
cb742bb6 37 color: #777;
ef72be3e
AB
38}
39
40code {
41 font-size: 1.15em;
42}
43
44table td {
45 padding: 0 0.3em;
46}
47table td:first-child {
48 padding-left: 0;
49}
50table td:last-child {
51 padding-right: 0
52}
53
54nav ul {
55 list-style-type: none;
56 padding: 0;
57}
58nav li {
59 display: inline;
60}
61nav li:after {
62 content: "\00a0\00b7";
63}
64nav li:last-child:after {
65 content: "";
66}
67
68section {
69 position: relative;
70}
71section > h3 {
72 position: absolute;
73 right: 75%;
74 width: 25%;
75 margin: 0;
76 padding: 0 1em 0 0; /* 1.75 */
cb742bb6 77 font-weight: normal;
ef72be3e
AB
78 font-size: 1em;
79 text-align: right;
80 white-space: nowrap;
81}
82section > .section, article > .section, body > header {
83 position: relative;
84 left: 25%;
85 width: 50%;
86 margin: 0;
87 padding: 0;
88 max-width: 38em;
cb742bb6 89}