blob: 37094f01c9d36a0e4539013dcc89cdf83cc47230 (
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
|
body {
background: #FFFFFF;
font-size: 11pt;
line-height: 1.5em;
margin: 10px 15px;
-webkit-user-select: none;
}
.remoting-header {
font-size: 1.2em;
font-weight: bold;
}
.remoting-success-image {
text-align: center;
margin: 20px;
}
#message {
font-weight: bold;
}
.remoting-footer {
position: fixed;
right: 0px;
bottom: 0px;
margin-right: 10px;
margin-bottom: 10px;
}
html[dir='rtl'] .remoting-footer {
text-align: left;
left: 0px;
bottom: 0px;
margin-left: 20px;
}
input[type='submit'] {
min-width: 87px;
min-height: 26px;
}
html[os='mac'] input[type='submit'] {
font-size: 12pt;
}
|