blob: 9dc43e74221c52b40b4804983924c4f20e1f1fa3 (
plain)
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
|
body {
font-family: sans-serif;
margin: 0;
overflow: hidden;
text-align: center;
-webkit-user-select: none;
}
h1 {
font-size: 10pt;
font-weight: normal;
padding: 0pt 10pt;
visibility: hidden;
}
#outer:hover h1, #outer:hover #close {
visibility: visible;
}
p {
font-size: 8pt;
padding: 0pt 14pt;
}
#outer {
border: 1px black solid;
box-sizing: border-box;
height: 100%;
position: absolute;
width: 100%;
}
#inner {
position: relative;
top: 50%;
margin-top: -70px;
}
#close {
visibility: hidden;
cursor: pointer;
position: absolute;
right: 3px;
top: 3px;
height: 14px;
width: 14px;
background-image: url("../../../ui/resources/close_bar.png");
background-position: right top;
background-repeat: no-repeat;
}
#close:hover {
background-image: url("../../../ui/resources/close_bar_h.png");
}
#close:active {
background-image: url("../../../ui/resources/close_bar_p.png");
}
|