forked from hezhii/mqttjs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
executable file
·113 lines (93 loc) · 1.93 KB
/
main.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
109
110
111
112
113
header {
margin-bottom: 20px;
border-bottom: solid 2px #000000;
background-image: -moz-linear-gradient(top, #f8f8f8 0%, #f2f2f2 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8f8f8), color-stop(100%, #f2f2f2));
background-image: -webkit-linear-gradient(top, #f8f8f8 0%, #f2f2f2 100%);
background-image: -o-linear-gradient(top, #f8f8f8 0%, #f2f2f2 100%);
background-image: -ms-linear-gradient(top, #f8f8f8 0%, #f2f2f2 100%);
background-image: linear-gradient(to bottom, #f8f8f8 0%, #f2f2f2 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#f2f2f2', GradientType=0);
}
.icon {
display: inline-block;
font-style: normal;
vertical-align: baseline;
text-align: center;
text-transform: none;
line-height: 1;
}
.icon:before {
font-family: Glyphicons Halflings !important;
}
ul {
padding: 0;
list-style: none;
}
.color-red {
color: #f04134;
}
.color-green {
color: #5cb85c;
}
.button-align {
margin-top: 23px;
}
#state > .icon:before {
vertical-align: text-bottom;
}
#publishRetain {
display: block;
margin-top: 10px;
}
td > i {
display: block;
width: 16px;
height: 16px;
}
.messages-list li {
margin-bottom: 10px;
}
.messages-list .message {
border: solid 1px #cccccc;
}
.message .small-text {
color: #bababa;
font-size: 12px;
}
.message .message-content {
-ms-word-wrap: break-word;
word-wrap: break-word;
font-size: 18px;
}
.topic-item {
border-left: 10px solid #9a9a9a;
margin-bottom: 8px;
}
.topic-item .content {
position: relative;
border: 1px solid #ccc;
padding-left: 8px;
}
.qos {
padding: 3px 0;
color: #bababa;
font-size: 12px;
}
.topic {
padding: 3px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.close {
margin-right: 8px;
}
#clearMessage {
float: right;
cursor: pointer;
color: #c9302c;
}
#clearMessage:hover {
text-decoration: none;
}