-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (64 loc) · 1.13 KB
/
style.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
body, html {
margin: 0;
padding: 0;
height: 100%;
}
input#req {
background-color: antiquewhite;
border: none;
font-family: monospace;
}
input#req:focus {
outline: none;
}
#control {
align-items: center;
background-color: rgb(255, 244, 230);
border-bottom: 1px solid black;
display: flex;
flex-wrap: wrap;
padding-bottom: 4px;
position: sticky;
top: 0;
width: calc(100vw - 20px);
}
.divi {
white-space: pre-wrap;
}
#maincont {
background-color: antiquewhite;
/* border: 1px solid black; */
/* display: block; */
font-family: monospace;
/* width: 100%; */
height: 100%;
/* margin: 8px 0; */
overflow-y: scroll;
padding-left: 1px;
}
#msg {
display: flex;
white-space: pre-wrap;
visibility: hidden;
}
#msgbox {
height: 100%;
/* width: 100%; */
white-space: pre-wrap;
overflow-y: auto;
}
/*#prompt {
font-weight: bold;
}*/
#req {
/* bottom: 0; */
/* position: absolute; */
margin: 0;
width: calc(100vw - 20px);
}
.sent {
color: red;
}
/*input[type="text"] {
background-color: aqua;
}*/