blob: 27b77caef5d70c87a3c5afece9eb5d07aa4700a0 (
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
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
117
118
|
.hostlist_body {
}
p {
color: black;
}
h1 {
font-family: sans-serif;
font-size: 2em;
font-weight: bold;
margin: 2px 5px 5px 5px
}
.message {
font-family: sans-serif;
font-size: 1.2em;
padding: 0 4px 0 4px;
}
.hostlist {
width: 100%;
margin: 0;
border: black 1px solid;
}
.hostentry {
margin: 0;
padding: 3px;
border-top: blue 1px solid;
min-height: 70px;
}
.hostentry:first-child {
border-top-style: none;
}
a.hostentry { text-decoration: none; }
.hosticon {
float: left;
margin: 2px;
}
.hostindent {
margin: 2px 4px 2px 75px;
}
.hostname {
font-family: sans-serif;
font-size: 1.2em;
font-weight: bold;
line-height: 1.2em;
}
.hoststatus_good {
font-weight: bold;
color: green;
}
.hoststatus_bad {
font-weight: bold;
color: red;
}
.hostinfo {
font-family: sans-serif;
font-size: 0.8em;
line-height: 1.1em;
}
.hostlinks {
font-family: sans-serif;
font-size: 0.7em;
line-height: 1.2em;
}
.connect {
float: right;
}
.reload {
font-family: sans-serif;
font-size: 0.8em;
font-style: italic;
margin: 0.25em 0 0.5em 5px;
line-height: 1em;
}
.login {
font-family: sans-serif;
font-size: 0.9em;
margin: 0 0 3px 5px;
}
.login_email {
font-weight: bold;
}
.chromoting_body {
margin: 0;
padding: 0;
overflow: hidden;
scrollbars: no;
}
.status_msg {
position: absolute;
left: 20px;
top: 20px;
z-index: 1;
font-family: sans-serif;
font-size: 2em;
font-weight: bold;
}
.plugin {
}
|