a09aef10001a061c7bef29ac1a21e1e87f056ad9
[phorkie.git] / www / phorkie.css
1 /* show IDs for anchors */
2 a.anchorlink:before {
3     font-size: smaller;
4     content: '_';
5     color: transparent;
6 }
7 h1[id]:hover a.anchorlink:before,
8 h2[id]:hover a.anchorlink:before,
9 h3[id]:hover a.anchorlink:before,
10 h4[id]:hover a.anchorlink:before,
11 h5[id]:hover a.anchorlink:before,
12 h6[id]:hover a.anchorlink:before {
13     content: "\00B6";/* pilcrow */
14     color: #888;
15     font-size: smaller;
16 }
17 a.anchorlink {
18     text-decoration: none;
19     margin-left: 0.5em;
20     font-size: smaller;
21 }
22 .navbar .brand {
23     /*float: right;*/
24     color: yellow;
25     text-shadow: 0 1px 0 rgba(255, 255, 255, .1), 0 0 30px rgba(255, 255, 255, .125);
26 }
27
28 .file {
29     margin-top: 2em;
30
31 }
32 .file .header {
33     padding: 1.0ex;
34     margin-bottom: 1em;
35     background-color: whiteSmoke;
36     border: 1px solid #EEE;
37     border: 1px solid rgba(0, 0, 0, 0.05);
38     -webkit-border-radius: 4px;
39     -moz-border-radius: 4px;
40     border-radius: 4px;
41 }
42 .file .code {
43     margin-left: 2em;
44 }
45 ul.pager {
46     margin-top: 2ex;
47 }
48
49 form textarea.content {
50     width: 100%;
51     box-sizing: border-box;
52     font-family: monospace;
53 }
54 form .allwidth {
55     box-sizing: border-box;
56 }
57 form .allwidth label {
58     width: 20%;
59     float: left;
60 }
61 form input#description {
62     box-sizing: border-box;
63     height: 2em;
64     width: 100%;
65 }