]> git.gir.st - VimFx.git/blob - extension/resources/style.css
closes #41. All help commands can be disabled now.
[VimFx.git] / extension / resources / style.css
1 /* Copied over from vimium project */
2 .VimFxReset {
3 background: none !important;
4 border: none !important;
5 /*bottom: auto !important;*/
6 box-shadow: none !important;
7 color: black !important;
8 cursor: auto !important;
9 display: inline !important;
10 float: none !important;
11 font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif !important;
12 font-size: inherit !important;
13 font-style: normal !important;
14 font-variant: normal !important;
15 font-weight: normal !important;
16 height: auto !important;
17 /*left: auto !important;*/
18 letter-spacing: 0 !important;
19 line-height: 100% !important;
20 margin: 0 !important;
21 max-height: none !important;
22 max-width: none !important;
23 min-height: 0 !important;
24 min-width: 0 !important;
25 opacity: 1 !important;
26 padding: 0 !important;
27 position: static !important;
28 /*right: auto !important;*/
29 text-align: left !important;
30 text-decoration: none !important;
31 text-indent: 0 !important;
32 text-shadow: none !important;
33 text-transform: none !important;
34 /*top: auto !important;*/
35 vertical-align: baseline !important;
36 white-space: normal !important;
37 width: auto !important;
38 z-index: 99999999 !important;
39 float: none !important;
40 }
41
42 /* Find */
43
44 body.VimFxFindModeBody ::-moz-selection { background-color: #2CD25E !important; }
45
46 span#VimFxFindSpan {
47 position: fixed !important;
48 bottom: 0 !important;
49 right: 0 !important;
50 font-size: 13px !important;
51 min-width: 200px !important;
52 background-color: white !important;
53 border: solid 2px #bd6b00 !important;
54 border-radius: 3px !important;
55 padding: 2px 4px 2px 4px !important;
56 }
57
58 /* Markers */
59
60 div.VimFxHintMarker {
61 position: absolute !important;
62 display: block !important;
63 white-space: nowrap !important;
64 overflow: hidden !important;
65 font-size: 11px !important;
66 padding: 1px 3px 1px 3px !important;
67 box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
68 background-color: #ff9103 !important;
69 border: solid 1px #bd6b00 !important;
70 border-radius: 3px !important;
71 }
72
73 div.VimFxHiddenHintMarker > span {
74 display: none !important;
75 }
76
77 div.VimFxHintMarker > span {
78 color: #303030 !important;
79 font-family: Helvetica, Arial, sans-serif !important;
80 font-weight: bold !important;
81 font-size: 11px !important;
82 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) !important;
83 }
84
85 div.VimFxHintMarker > span.VimFxCharMatch {
86 color: #ffa22a !important;
87 }
88
89 /* Help Dialog */
90
91 div#VimFxHelpDialog {
92 opacity:0.92 !important;
93 background-color:white !important;
94 position:fixed !important;
95 border-radius:3px !important;
96 padding:15px 30px !important;
97 width:700px !important;
98 left:50% !important;
99 /* This needs to be 1/2 width to horizontally center the help dialog */
100 margin-left:-380px !important;
101 top:30px !important;
102 box-shadow: rgba(1, 2, 1, 0.4) 0px 0px 6px !important;
103 overflow-y: auto !important;
104 z-index:99999998 !important;
105 font-size: 15px !important;
106 max-height: 80% !important;
107 }
108
109 div#VimFxHelpDialog .VimFxTitle {
110 font-size: 30px !important;
111 line-height: 130% !important;
112 display: block !important;
113 float: left !important;
114 }
115
116 div#VimFxHelpDialog .VimFxClearFix {
117 clear: both !important;
118 float: none !important;
119 display: block !important;
120 visibility: hidden !important;
121 height: 0 !important;
122 }
123
124 div#VimFxHelpDialog .VimFxTitleVim {
125 color: darkgreen !important;
126 }
127
128 div#VimFxHelpDialog .VimFxTitleFx {
129 color: darkred !important;
130 }
131
132 div#VimFxHelpDialog .VimFxVersion {
133 float: right !important;
134 position: absolute !important;
135 top: 20px !important;
136 right: 100px !important;
137 font-size: 12px !important;
138 }
139
140 div#VimFxHelpDialog .VimFxClose {
141 float: right !important;
142 font-family: "courier new" !important;
143 position: absolute !important;
144 right: 20px !important;
145 top: 20px !important;
146 font-size: 20px !important;
147 cursor: pointer !important;
148 }
149
150 div#VimFxHelpDialog .VimFxSocial {
151 float: left !important;
152 }
153
154 div#VimFxHelpDialog .VimFxColumn {
155 width: 46% !important;
156 margin: 0 0 0 8% !important;
157 float: left !important;
158
159 margin-bottom: 10px !important;
160 }
161
162 div#VimFxHelpDialog .VimFxColumn:first-child
163 { margin: 0 !important;}
164
165 div#VimFxHelpDialog .VimFxSectionTitle {
166 display: block !important;
167 font-size: 15px !important;
168 font-weight: bold !important;
169 line-height: 140% !important;
170 text-transform: uppercase !important;
171 margin: 30px 0 10px 0 !important;
172
173 }
174
175 div#VimFxHelpDialog table.VimFxReset {
176 display: table !important;
177 table-layout: auto !important;
178 }
179
180 div#VimFxHelpDialog tr.VimFxReset {
181 display: table-row !important;
182 }
183
184 div#VimFxHelpDialog td.VimFxReset {
185 display: table-cell !important;
186 padding-top: 2px !important;
187 padding-bottom: 4px !important;
188 line-height: 15px !important;
189
190 }
191
192 div#VimFxHelpDialog td.VimFxSequence {
193 min-width:50px !important;
194 text-align: right !important;
195 padding-right:5px !important;
196 font-weight:bold !important;
197 color:#2f508e !important;
198 }
199
200 div#VimFxHelpDialog .VimFxSocial {
201 margin: 30px 0 0 0 !important;
202 font-size: 12px !important;
203 }
204
205 div#VimFxHelpDialog .VimFxSocial p {
206 display: block !important;
207 line-height: 150% !important;
208 margin: 0 0 5px 0 !important;
209 }
210
211 div#VimFxHelpDialog .VimFxSocial a {
212 text-decoration: underline !important;
213 color: darkblue !important;
214 cursor: pointer !important;
215 }
216
217 div#VimFxHelpDialog span.VimFxDot {
218 color: #818181 !important;
219 }
Imprint / Impressum