-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.css
109 lines (94 loc) · 1.21 KB
/
popup.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
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
body {
width: 300px;
padding: 0;
margin: 10px 0;
color: #333;
}
p#empty {
padding-top: 20px;
text-align: center;
}
div#content {
width: 100%;
padding: 0;
margin: 0 auto 0;
float: right;
}
div.host {
padding: 5px 10px;
margin-bottom: 10px;
opacity: 0.8;
}
div.host:hover {
color: #000;
background-color: #eee;
opacity: 1.0;
cursor: pointer;
}
div.host:hover .status {
background-color: blue;
}
h2 {
margin-bottom: 2px;
}
h2 span {
display: inline-block;
font-size: 10px;
margin-left: 10px;
}
ul {
width: 100%;
padding: 0;
margin: 0;
list-style: none;
}
li {
width: 100%;
}
span {
display: inline-block;
padding: 2px 5px;
}
span.name {
width: 20%;
}
div.head-div {
/*width: 150px;*/
overflow: hidden;
margin-bottom: 3px;
}
.avartar {
width: 70px;
height: 70px;
display: block;
float: left;
}
div.head-div span {
display: block;
float: left;
}
span.host-name {
width: 180px;
margin: 2px 2px 0;
}
span.room-name {
width: 180px;
margin: 0 2px;
}
span.status {
margin: 2px 8px;
color: white;
}
span.online {
background-color: red;
}
span.offline {
background-color: green;
}
button {
display: block;
padding: 5px 15px;
float: right;
margin-right: 10px;
margin-bottom: 10px;
}