-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsoleBasicStyle.css
More file actions
66 lines (61 loc) · 1.07 KB
/
ConsoleBasicStyle.css
File metadata and controls
66 lines (61 loc) · 1.07 KB
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
/*
* Simplistic Style For The MQTT with SSL Console
* Why not having style, right?
*
* Doesn´t Use any External Resource
*/
#webConsole{
display:block;
position: relative;
width:185px;
height:210;
}
.smallInput{
width:40px;
}
.mediumInput{
width:85px;
}
#btnHideWarn{
position:absolute;
right:5px;
top: 5px;
font-size:10px;
text-decoration: underline;
cursor: pointer;
}
#consoleOutput{
width:180px;
height:200px;
overflow-y:auto;
word-wrap: break-word;
}
.webConsoleContent{
display: block;
background-color: white;
border: 1px solid lightgray;
}
.consoleMsg{
width:100%;
min-height:22px;
font-size:15px;
display:block;
box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}
.consoleMsg.noMsg{
background-color:FireBrick;
color:white;
}
.consoleMsg.yesMsg{
background-color:steelBlue;
color:white;
}
.consoleMsg.warnMsg{
background-color:lightgray;
color:charcoal;
}
.consoleStylebar{
height:15;
width:5px;
background-color:lime;
}