]> git.gir.st - VimFx.git/blob - extension/resources/style.css
Merge branch 'master' of github.com:akhodakivskiy/VimFx into develop
[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: clear !important;
40 }
41
42 div.VimFxHintMarker {
43 position: absolute !important;
44 display: block !important;
45 white-space: nowrap !important;
46 overflow: hidden !important;
47 font-size: 11px !important;
48 padding: 1px 3px 1px 3px !important;
49 box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
50 background-color: #ff9103 !important;
51 border: solid 1px #bd6b00 !important;
52 border-radius: 3px !important;
53 }
54
55 div.VimFxHiddenHintMarker > span {
56 display: none !important;
57 }
58
59 div.VimFxHintMarker > span {
60 color: #303030 !important;
61 font-family: Helvetica, Arial, sans-serif !important;
62 font-weight: bold !important;
63 font-size: 11px !important;
64 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) !important;
65 }
66
67 div.VimFxHintMarker > span.VimFxCharMatch {
68 color: #ffa22a !important;
69 }
70
71 /* Help Dialog */
72
73 div#VimFxHelpDialog {
74 opacity:0.92 !important;
75 background-color:white !important;
76 position:fixed !important;
77 border-radius:3px !important;
78 padding:15px 30px !important;
79 width:600px !important;
80 left:50% !important;
81 /* This needs to be 1/2 width to horizontally center the help dialog */
82 margin-left:-330px !important;
83 top:30px !important;
84 box-shadow: rgba(1, 2, 1, 0.4) 0px 0px 6px !important;
85 overflow-y: auto !important;
86 z-index:99999998 !important;
87 font-size: 15px !important;
88 max-height: 80% !important;
89 }
90
91 div#VimFxHelpDialog .VimFxTitle {
92 font-size: 30px !important;
93 line-height: 130% !important;
94 display: block !important;
95 float: left !important;
96 }
97
98 div#VimFxHelpDialog .VimFxClearFix {
99 clear: both !important;
100 float: none !important;
101 display: block !important;
102 visibility: hidden !important;
103 height: 0 !important;
104 }
105
106 div#VimFxHelpDialog .VimFxTitleVim {
107 color: darkgreen !important;
108 }
109
110 div#VimFxHelpDialog .VimFxTitleFx {
111 color: darkred !important;
112 }
113
114 div#VimFxHelpDialog .VimFxVersion {
115 float: right !important;
116 position: absolute !important;
117 top: 20px; !important;
118 right: 100px; !important;
119 font-size: 12px !important;
120 }
121
122 div#VimFxHelpDialog .VimFxClose {
123 float: right !important;
124 font-family: "courier new" !important;
125 position: absolute !important;
126 right: 20px !important;
127 top: 20px !important;
128 font-size: 20px !important;
129 cursor: hand !important;
130 cursor: pointer !important;
131 }
132
133 div#VimFxHelpDialog .VimFxSocial {
134 float: left !important;
135 }
136
137 div#VimFxHelpDialog .VimFxColumn {
138 width: 46% !important;
139 margin: 0 0 0 8% !important;
140 float: left !important;
141
142 margin-bottom: 10px !important;
143 }
144
145 div#VimFxHelpDialog .VimFxColumn:first-child
146 { margin: 0 !important;}
147
148 div#VimFxHelpDialog .VimFxSectionTitle {
149 display: block !important;
150 font-size: 15px !important;
151 font-weight: bold !important;
152 line-height: 140% !important;
153 text-transform: uppercase !important;
154 margin: 30px 0 10px 0 !important;
155
156 }
157
158 div#VimFxHelpDialog table.VimFxReset {
159 display: table !important;
160 table-layout: auto !important;
161 }
162
163 div#VimFxHelpDialog tr.VimFxReset {
164 display: table-row !important;
165 }
166
167 div#VimFxHelpDialog td.VimFxReset {
168 display: table-cell !important;
169 padding-top: 2px !important;
170 padding-bottom: 4px !important;
171 line-height: 15px !important;
172
173 }
174
175 div#VimFxHelpDialog td.VimFxSequence {
176 min-width:50px !important;
177 text-align: right !important;
178 padding-right:5px !important;
179 font-weight:bold !important;
180 color:#2f508e !important;
181 }
182
183 div#VimFxHelpDialog .VimFxSocial {
184 margin: 30px 0 0 0 !important;
185 font-size: 12px !important;
186 }
187
188 div#VimFxHelpDialog .VimFxSocial p {
189 display: block !important;
190 line-height: 150% !important;
191 margin: 0 0 5px 0 !important;
192 }
193
194 div#VimFxHelpDialog .VimFxSocial a {
195 text-decoration: underline !important;
196 color: darkblue !important;
197 cursor: hand !important;
198 cursor: pointer !important;
199 }
200
201 div#VimFxHelpDialog span.VimFxDot {
202 color: #818181 !important;
203 }
Imprint / Impressum