-
Notifications
You must be signed in to change notification settings - Fork 1
/
simplemodal.css
50 lines (45 loc) · 877 Bytes
/
simplemodal.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
/*
* SimpleModal Basic Modal Dialog
* http://www.ericmmartin.com/projects/simplemodal/
* http://code.google.com/p/simplemodal/
*
* Copyright (c) 2008 Eric Martin - http://ericmmartin.com
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Revision: $Id: basic.css 132 2008-05-23 16:05:17Z emartin24 $
*
*/
/* Overlay */
#modalOverlay {
background-color:#000;
cursor:wait;
}
/* Container */
#modalContainer {
height:400px;
width:600px;
left:50%;
top:15%;
margin-left:-300px;
background-color:#fff;
border:3px solid #ccc;
}
#modalContainer a.modalCloseImg {
background:url(/images/x.png) no-repeat;
width:25px;
height:29px;
display:inline;
z-index:3200;
position:absolute;
top:-15px;
right:-18px;
cursor:pointer;
}
#modalContainer #basicModalContent {
padding:8px;
}
#login_dialog {
padding: 10px;
}