-
Notifications
You must be signed in to change notification settings - Fork 0
/
wikipedify.css
124 lines (102 loc) · 2.22 KB
/
wikipedify.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.hoverbox {
position:absolute;
z-index: 99999;
color: #000 !important;
font-size: 14px !important;
font-family: Arial, Helvetica, sans-serif !important;
padding: 10px 30px;
border-radius: 5px;
-webkit-box-shadow: 0px -5px 30px 0px rgba(50, 50, 50, 0.32);
-moz-box-shadow: 0px -5px 30px 0px rgba(50, 50, 50, 0.32);
box-shadow: 0px -5px 30px 0px rgba(50, 50, 50, 0.32);
display:none;
}
.hoverbox_noverflow {
min-height: 50px;
max-height: 450px;
width: 500px;
overflow: hidden;
}
.hoverbox_noverflow h2 {
display: none;
}
.hoverbox_loading {
display: none;
}
.arrow_box {
background: #fff;
border: 1px solid #aaa;
}
.arrow_box:after, .arrow_box:before {
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.arrow_box:after {
border-color: rgba(213, 26, 26, 0);
border-width: 15px;
margin:0;
}
.arrow_box:before {
border-color: rgba(245, 238, 238, 0);
border-width: 16px;
margin: 0;
}
#hover_top.arrow_box:after, #hover_top.arrow_box:before {
top: 100%;
left: 50%;
}
#hover_top.arrow_box:after {
border-top-color: #fff;
margin-left: -15px;
}
#hover_top.arrow_box:before {
border-top-color: #aaa;
margin-left: -16px;
}
#hover_right.arrow_box:after {
border-right-color: #fff;
margin-top: -15px;
margin-left: -30px;
}
#hover_right.arrow_box:before {
border-right-color: #aaa;
margin-top: -16px;
margin-left: -32px;
}
#hover_left.arrow_box:after {
border-left-color: #fff;
margin-top: -15px;
}
#hover_left.arrow_box:before {
border-left-color: #aaa;
margin-top: -16px;
}
#hover_bottom.arrow_box:after {
border-bottom-color: #fff;
margin-top: -30px;
margin-left: -15px;
}
#hover_bottom.arrow_box:before {
border-bottom-color: #aaa;
margin-top: -32px;
margin-left: -16px;
}
#hover_left.arrow_box:after, #hover_left.arrow_box:before {
top: 50%;
left: 100%;
}
#hover_right.arrow_box:after, #hover_right.arrow_box:before {
top: 50%;
left: 0%;
}
#hover_bottom.arrow_box:after, #hover_bottom.arrow_box:before {
top: 0%;
left: 50%;
}
#wikilink {
color: blue;
}