-
Notifications
You must be signed in to change notification settings - Fork 0
/
mqttpoke.css
69 lines (59 loc) · 872 Bytes
/
mqttpoke.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
/* mqttpoke (c) 2024 Ryan Griggs. All rights reserved.
Released under MIT license.
https://github.com/ryangriggs/mqttpoke
*/
body
{
margin: 0;
padding: 0;
}
.template
{
display: none;
}
.connection
{
border-bottom: 4px solid black;
height: 40px;
background-color: #666;
}
.data
{
position: absolute;
top: 40px;
left: 0;
right: 0;
height: 60%;
overflow: scroll;
}
.data .item
{
border-bottom: 1px solid #666;
}
.data .item:nth-child(even)
{
background-color: #999;
}
.data .item:hover
{
background-color: yellow;
}
.data .item .message .bool
{
display: none;
}
.log
{
height: calc(40% - 40px);
overflow: scroll;
border-top: 4px solid #333;
background-color: #aaa;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.log .entry
{
border-bottom: 1px solid #666;
}