1b524f76ea530b26306922643cd9788c2ffcf16e
[phorkie.git] / www / css / 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 li a.brand {
23     /*float: right;*/
24     margin-left: -14px;
25     color: #DDA;
26     text-shadow: 0 0 30px rgba(255, 255, 255, .9);
27 }
28 .navbar li a.brand:hover {
29     color: #FFA;
30 }
31
32 @media (min-width: 980px) and (max-width: 1199px) {
33     .navbar .container {
34         width: 940px;
35     }
36 }
37
38 @media (min-width: 768px) and (max-width: 979px) {
39     .navbar .container {
40         width: 724px;
41     }
42 }
43
44 .footer {
45     margin-top: 36px;
46     margin-bottom: 0px;
47     border-top: 1px solid #DDD;
48     color: #999;
49     text-align: center;
50 }
51
52 h1 {
53     margin-bottom: 0.5ex;
54 }
55
56 .repo-info {
57     margin-bottom: 2ex;
58 }
59 .repo-info form {
60     margin-bottom: 0px;
61 }
62 .urlinfo {
63     padding-bottom: 0px;
64 }
65
66 .file .header {
67     padding: 0ex 0ex 0ex 1ex;
68     margin-bottom: 1em;
69     background-color: whiteSmoke;
70     border: 1px solid #EEE;
71     border: 1px solid rgba(0, 0, 0, 0.05);
72     -webkit-border-radius: 4px;
73     -moz-border-radius: 4px;
74     border-radius: 4px;
75 }
76 .file .header h3 {
77     margin: 0px;
78     font-size: 1.2em;
79 }
80 .file .header .btn-mini {
81     margin-left: 2px;
82 }
83 .file .code {
84     margin-left: 2em;
85 }
86 .file .image {
87     margin-bottom: 2ex;
88 }
89
90 div.annotations div.alert {
91     margin-bottom: 1ex;
92 }
93
94 ul.history li {
95     padding-left: 2px;
96     padding-bottom: 1px;
97 }
98 ul.history li.active {
99     background-color: #EEE;
100     border-radius: 3px;
101 }
102 ul.history a.hash {
103     font-family: monospace;
104 }
105
106
107 ul.pager {
108     margin-top: 2ex;
109 }
110
111 .formbuttons {
112     margin-top: 2ex;
113 }
114
115 form textarea.content {
116     width: 100%;
117     box-sizing: border-box;
118     font-family: monospace;
119     margin-bottom: 0px;
120     margin-top: 2ex;
121 }
122 .content-details {
123     margin-top: 12px;
124 }
125 .content-details .additional-btn {
126     margin-top: -12px;
127 }
128 form .allwidth {
129     box-sizing: border-box;
130 }
131 form .allwidth label {
132     width: 20%;
133     float: left;
134 }
135 form input#description {
136     box-sizing: border-box;
137     height: 2em;
138     width: 100%;
139 }
140
141 form label.inline {
142     display: inline;
143 }
144
145 .form-horizontal .control-label {
146     text-align: left;
147     width: 8em;
148 }
149
150 .form-horizontal .controls {
151     margin-left: 8em;
152 }
153
154 .btn [class^="icon-"], .btn [class*=" icon-"] {
155     line-height: 1.1em;
156 }
157
158 .indent {
159     margin-left: 10px;
160 }
161
162 .nobr {
163     white-space:nowrap;
164 }