forked from pschichtel/libdatachannel-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
110 lines (92 loc) · 1.69 KB
/
Copy pathindex.css
File metadata and controls
110 lines (92 loc) · 1.69 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
html {
background-color: #2b2b2b;
color: #e0e0e0;
font-family: Arial, sans-serif;
}
body {
margin: 0;
padding: 0;
height: 100vh;
}
.row {
gap: 16px;
display: flex;
flex-direction: row;
}
body > div {
padding: 8px;
height: calc(100% - 16px);
}
#stat2 span {
display: none;
}
/*
closed connected connecting disconnected failed
checking closed completed connected disconnected failed new
*/
#stat2.state-connected span.state-connected,
#stat2.state-connecting span.state-connecting,
#stat2.state-failed span.state-failed,
#stat2.ice-connected span.ice-connected,
#stat2.ice-checking span.ice-checking,
#stat2.ice-failed span.ice-failed {
display: block;
}
.input-container {
position: relative;
}
.input-icon {
position: absolute;
top: 10px;
left: 10px;
}
.column.left-column {
min-width: 500px;
flex: 0
}
.column {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}
.section {
width: 100%;
margin-bottom: 20px; /* Spacing between sections */
}
textarea, #chat {
background-color: #3f3f3f;
color: #e0e0e0;
border: 1px solid #5c5c5c;
padding: 8px;
width: 100%; /* Full width */
box-sizing: border-box;
}
#chat {
padding-left: 35px;
}
#offer {
flex: 1;
}
#fullAnswer {
flex: 1
}
#answer {
height: 100px;
}
/*#copyButton {*/
/* background-color: #3f3f3f;*/
/* color: #ffffff;*/
/* padding: 8px 16px;*/
/* border: none;*/
/* cursor: pointer;*/
/*}*/
#output {
margin: 0;
flex: 1;
background-color: #3f3f3f;
color: #e0e0e0;
padding: 10px;
border: 1px solid #5c5c5c;
overflow-y: auto; /* Enable vertical scrollbar if needed */
}