better brand color
[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: #DDA;
25     text-shadow: 0 0 30px rgba(255, 255, 255, .9);
26 }
27 .navbar .brand:hover {
28     color: #FFA;
29 }
30
31 .file {
32     margin-top: 2em;
33
34 }
35 .file .header {
36     padding: 1.0ex;
37     margin-bottom: 1em;
38     background-color: whiteSmoke;
39     border: 1px solid #EEE;
40     border: 1px solid rgba(0, 0, 0, 0.05);
41     -webkit-border-radius: 4px;
42     -moz-border-radius: 4px;
43     border-radius: 4px;
44 }
45 .file .code {
46     margin-left: 2em;
47 }
48 ul.pager {
49     margin-top: 2ex;
50 }
51
52 form textarea.content {
53     width: 100%;
54     box-sizing: border-box;
55     font-family: monospace;
56 }
57 form .allwidth {
58     box-sizing: border-box;
59 }
60 form .allwidth label {
61     width: 20%;
62     float: left;
63 }
64 form input#description {
65     box-sizing: border-box;
66     height: 2em;
67     width: 100%;
68 }
69
70 form label.inline {
71     display: inline;
72 }