-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (49 loc) · 1.02 KB
/
style.css
File metadata and controls
59 lines (49 loc) · 1.02 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
.buttplug__info {
background-color: rgba(0, 0, 0, 0.5);
color: white;
font-size: 1em;
padding: 1em;
box-sizing: border-box;
z-index: 1000;
overflow-y: auto;
pointer-events: auto;
}
.buttplug__info_websocket_address {
display: flex;
flex-wrap: wrap;
}
.buttplug__info_websocket_address .buttplug__info_websocket_address_label {
flex: 0 0 auto;
}
.buttplug__info_websocket_address .buttplug__info_websocket_address_input {
flex: 1 1 auto;
}
.buttplug__info_controls {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0.5em 0;
}
.buttplug__info_controls button {
width: 48%;
padding: 0.5em;
background: transparent;
border: 1px solid white;
color: white;
}
ul.buttplug__info_devices,
ul.buttplug__info_devices ul {
list-style-type: square;
padding-left: 1em;
}
li.buttplug__info_device,
ul.buttplug__info_devices ul li {
margin: 0;
}
.buttplug__info_status_text {
font-weight: bold;
color: #a9cf52;
}
.buttplug__info_status_text.buttplug__info_status_text_disconnected {
color: #ffaabb;
}