show history in sidebar
[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 h1 {
32     margin-bottom: 0.5ex;
33 }
34
35 .repo-info {
36     margin-bottom: 2em;
37 }
38 .file .header {
39     padding: 1.0ex;
40     margin-bottom: 1em;
41     background-color: whiteSmoke;
42     border: 1px solid #EEE;
43     border: 1px solid rgba(0, 0, 0, 0.05);
44     -webkit-border-radius: 4px;
45     -moz-border-radius: 4px;
46     border-radius: 4px;
47 }
48 .file .header .btn-mini {
49     margin-left: 2px;
50 }
51 .file .code {
52     margin-left: 2em;
53 }
54 .file .image {
55     margin-bottom: 2ex;
56 }
57
58 div.annotations div.alert {
59     margin-bottom: 1ex;
60 }
61
62 ul.history li {
63     padding-left: 2px;
64     padding-bottom: 1px;
65 }
66 ul.history li.active {
67     background-color: #EEE;
68     border-radius: 3px;
69 }
70 ul.history a.hash {
71     font-family: monospace;
72 }
73
74
75 ul.pager {
76     margin-top: 2ex;
77 }
78
79 form textarea.content {
80     width: 100%;
81     box-sizing: border-box;
82     font-family: monospace;
83 }
84 form .allwidth {
85     box-sizing: border-box;
86 }
87 form .allwidth label {
88     width: 20%;
89     float: left;
90 }
91 form input#description {
92     box-sizing: border-box;
93     height: 2em;
94     width: 100%;
95 }
96
97 form label.inline {
98     display: inline;
99 }