-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
58 lines (46 loc) · 833 Bytes
/
index.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
html[lang="ja"] .lang-en {
display: none;
}
html:not([lang="ja"]) .lang-ja {
display: none;
}
.operation-button {
padding: 0.5em 1em;
}
#customBaudRateInput:not(.custom-selected) {
display: none;
}
.field-grid {
display: grid;
grid-template-columns: auto 1fr;
}
.field-name {
margin-right: 0.5em;
}
select, input[type="text"] {
margin-bottom: 0.5em;
}
#fileToSendDropArea {
display: flex;
align-items: center;
width: 100%;
height: 100%;
border: 1px solid black;
box-sizing: border-box;
}
#dataToSendArea:not(.send-file-mode) #fileToSendDropArea {
display: none;
}
#dataToSendArea.send-file-mode #textToSend {
display: none;
}
#signalDetected:not(.detected) {
display: none;
}
.basic-table {
border: 1px solid black;
}
.basic-table th, .basicTable td {
border: 1px solid black;
padding: 0.2em 0.3em;
}