forked from ashenwolf/jp2ua-transliterate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjp2ua.css
46 lines (36 loc) · 1.12 KB
/
jp2ua.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
.jp2ua.overlay {
position: absolute; /* important */
top: 0px; /* start from top */
left: 0px; /* start from left */
height: 100%; /* cover the whole page */
width: 100%; /* cover the whole page */
display: none; /* don't show it '*/
/* styling bellow */
background-color: black;
z-index: 1000;
}
.jp2ua.window {
position: absolute; /* important so we can position it on center later */
display: none; /* don't show it */
/* styling bellow */
color: #fff;
top: 0;
width: 400px;
border: 1px solid gray;
background: #fff;
color: black;
z-index: 1001;
padding: 5px 30px 10px 30px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
-webkit-border-radius: 0px 0px 10px 10px;
border-radius: 0px 0px 10px 10px;
-webkit-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
}
.jp2ua.window label {
font-size: small;
}