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