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