]> git.gir.st - VimFx.git/blob - resources/vimff.css
Finally implemented hints and markers, as well as most of the commands. Began writing...
[VimFx.git] / resources / vimff.css
1 /* Copied over from vimium project */
2 div.vimffReset,
3 span.vimffReset,
4 {
5 background: none;
6 border: none;
7 bottom: auto;
8 box-shadow: none;
9 color: black;
10 cursor: auto;
11 display: inline;
12 float: none;
13 font-family : "Helvetica Neue", "Helvetica", "Arial", sans-serif;
14 font-size: inherit;
15 font-style: normal;
16 font-variant: normal;
17 font-weight: normal;
18 height: auto;
19 left: auto;
20 letter-spacing: 0;
21 line-height: 100%;
22 margin: 0;
23 max-height: none;
24 max-width: none;
25 min-height: 0;
26 min-width: 0;
27 opacity: 1;
28 padding: 0;
29 position: static;
30 right: auto;
31 text-align: left;
32 text-decoration: none;
33 text-indent: 0;
34 text-shadow: none;
35 text-transform: none;
36 top: auto;
37 vertical-align: baseline;
38 white-space: normal;
39 width: auto;
40 z-index: 99999999;
41 }
42
43 div.vimffHintMarker {
44 position: absolute;
45 display: block;
46 white-space: nowrap;
47 overflow: hidden;
48 font-size: 11px;
49 padding: 1px 3px 0px 3px;
50 box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
51 background-color: #AEDC3A;
52 border: solid 1px #2B95B0;
53 border-radius: 5px;
54 }
55
56
57 div.vimffHintMarker span {
58 color: #303030;
59 font-family: Helvetica, Arial, sans-serif;
60 font-weight: bold;
61 font-size: 11px;
62 text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
63 }
64
65 div.vimffHintMarker span.vimffCharMatch {
66 color: #FFFFFF;
67 }
Imprint / Impressum