Single file editing
[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 .navbar + .container {
45     margin-top: 2ex;
46 }
47
48 .footer {
49     margin-top: 36px;
50     margin-bottom: 0px;
51     border-top: 1px solid #DDD;
52     color: #999;
53     text-align: center;
54 }
55
56 h1 {
57     margin-top: 0ex;
58     margin-bottom: 0.5ex;
59 }
60
61 .repo-info {
62     margin-bottom: 2ex;
63 }
64 .repo-info form {
65     margin-bottom: 0px;
66 }
67 .urlinfo {
68     padding-bottom: 0px;
69 }
70
71 .file .header {
72     padding: 0ex 0ex 0ex 1ex;
73     margin-bottom: 1em;
74     background-color: whiteSmoke;
75     border: 1px solid #EEE;
76     border: 1px solid rgba(0, 0, 0, 0.05);
77     -webkit-border-radius: 4px;
78     -moz-border-radius: 4px;
79     border-radius: 4px;
80 }
81 .file .header h3 {
82     margin: 0px;
83     font-size: 1.2em;
84 }
85 .file .header .btn-mini {
86     margin-left: 2px;
87 }
88 .file .code {
89     margin-left: 2em;
90 }
91 .file .image {
92     margin-bottom: 2ex;
93 }
94
95 div.annotations div.alert {
96     margin-bottom: 1ex;
97 }
98
99 ul.history li {
100     padding-left: 2px;
101     padding-bottom: 1px;
102 }
103 ul.history li.active {
104     background-color: #EEE;
105     border-radius: 3px;
106 }
107 ul.history a.hash {
108     font-family: monospace;
109 }
110
111
112 ul.pager {
113     margin-top: 2ex;
114 }
115
116 .formbuttons {
117     margin-top: 2ex;
118 }
119
120 form textarea.content {
121     width: 100%;
122     box-sizing: border-box;
123     font-family: monospace;
124     margin-bottom: 0px;
125     margin-top: 2ex;
126 }
127 .content-details {
128     margin-top: 12px;
129 }
130 .content-details .additional-btn {
131     margin-top: -12px;
132 }
133 form .allwidth {
134     box-sizing: border-box;
135 }
136 form .allwidth label {
137     width: 20%;
138     float: left;
139 }
140 form input#description {
141     box-sizing: border-box;
142     height: 2em;
143     width: 100%;
144 }
145
146 form label.inline {
147     display: inline;
148 }
149
150 .form-horizontal .control-label {
151     text-align: left;
152     width: 8em;
153 }
154
155 .form-horizontal .controls {
156     margin-left: 8em;
157 }
158
159 .btn [class^="icon-"], .btn [class*=" icon-"] {
160     line-height: 1.1em;
161 }
162
163 .content-padding-fix {
164     height: 1em;
165 }
166
167 .indent {
168     margin-left: 10px;
169 }
170
171 .nobr {
172     white-space:nowrap;
173 }
174
175 .avatar-large {
176     border-radius: 5px;
177 }
178 .avatar-small {
179     border-radius: 3px;
180 }
181 .avatar-tiny {
182     border-radius: 2px;
183 }
184
185 .forkdomain {
186     margin-left: 2ex;
187 }