0d8a30eb41ee2e9b1407fc910eec5f22afd65763.svn-base
827 Bytes
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
/**
* jQuery Simple Dialog
*/
.sd_container{
font-family: arial,helvetica,sans-serif;
margin:0;
padding: 10px;
position: absolute;
background-color: #fff;
border: solid 1px #ccc;
text-align:center;
}
.sd_header{
font-size: 125%;
font-weight:bold;
margin-bottom: 10px;
}
.sd_content{}
.sd_footer{
color: #a0a0a0;
margin-top: 10px;
}
.sd_overlay{
position: absolute;
margin:0;
padding: 0;
top: 0;
left: 0;
background-color: #222;
}
.sd_loading{
background: url('indicator.gif') center no-repeat;
background-color: #fff;
height: 60px;
width: 60px;
}
.sd_closelabel{
position:absolute;
width:50px;
height:22px;
line-height:22px;
top:0;
left:0;
padding:5px;
text-align:center;
background-color:#ccc;
}
.sd_closelabel a {
text-decoration:none;
color: #222;
font-size: 12px;
font-weight:bold;
}