-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (75 loc) · 1.5 KB
/
style.css
File metadata and controls
75 lines (75 loc) · 1.5 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
67
68
69
70
71
72
73
74
75
body{
display: flex;
height: 100vh;
flex-direction: column;
align-items: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
label{
position: absolute;
top: -10px;
left: 10px;
background: white;
border-radius: 0 0 10px 10px;
width: 100px;
text-align: center;
}
#deviceName{
height: 30px;
border-radius: 10px;
}
#connectBtn{
background-color: #5C9FCB;
height: 30px;
border-radius: 5px;
border: none;
box-shadow: 0px 0px 1px 0px #000000;
}
#connectBtn:disabled{
background-color: #a3c3d9;
color: #1010104D;
}
#disconnectBtn:disabled{
background-color: #a3c3d9;
color: #1010104D;
}
#disconnectBtn{
background-color: #5C9FCB;
height: 30px;
border-radius: 5px;
border: none;
box-shadow: 0px 0px 1px 0px #000000;
}
#log{
border-radius: 5px;
width:500px;
height: 200px;
overflow-y: auto;
border: 1px solid #ccc;
font-family: monospace;
white-space: pre-wrap;
}
#message{
height: 35px;
width: 250px;
border: 2px solid #82529b;
border-radius: 10px;
background-color: #bb90d37a;
}
#message:focus{
outline: none;
box-shadow: 0 0 5px #82529b;
}
#sendBtn{
border: 2px solid #75a96d;
height: 30px;
border-radius: 5px;
background-color: #80bb958a;
color:#4e6f49;
}
#sendBtn:disabled{
color: #1010104D;
}
.msg{
padding: 4px 2px;
}