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
|
/* Fart */
.popup {
width: 500px;
height: 250px;
position: fixed;
z-index: 9999;
/* negative margins equal to half of width and half of height centers the element in conjunction with top/left: 50%; */
margin-left: -250px;
margin-top: -125px;
top: 50%;
left: 50%;
border: 1px solid #d3d3d3;
font: normal 1.3em/100% sans-serif;
background: #f5f5f5;
}
.popup form {
margin-left: 10px;
margin-top: 10px;
}
.popup .popupHeader{
padding: 5px 10px;
color:#FFF;
background-color:#353535;
font-size: 100%;
font-weight: normal;
line-height: 1.5em;
border-bottom: 1px solid #d3d3d3;
}
.popup form ul li {
list-style: none;
height: 40px;
}
.popup form ul li label {
float: left;
width: 10em;
clear: left;
line-height: 30px;
}
.popup input.text {
background-color:white;
width:230px;
font-size:16px;
color:color:#333333;
border-radius: 7px;
padding: 5px;
height: auto;
vertical-align: bottom;
margin-left: 0;
border: 1px #d3d3d3 solid;
}
.popup input.text:focus {
outline: 0;
border-color: #000;
}
.popup textarea {
margin-top: .5em;
border-radius: 7px;
border: 1px #d3d3d3 solid;
}
.popup textarea:focus {
outline: 0;
border-color: #000;
}
.popup span {
font-size: 100%;
line-height: 30px;
}
.popup .bottomMenu {
position: absolute;
bottom: 10px;
}
.popup .popupButton {
display:inline-block !important;
height:35px;
width:100px;
color: #666;
border-radius: 7px;
border: 1px #d3d3d3 outset;
background-image: linear-gradient(to top,#fff,#f5f5f5);
}
.popup .popupButton:hover {
cursor: pointer;
background: #fefefe;
color: #000;
}
.popup .popupButton:active {
border: 1px #d3d3d3 inset;
}
.popup .popupButton:focus {
border-color: #000;
outline: 0;
}
.popup .hint {
float: right;
}
|