-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.css
56 lines (56 loc) · 1.05 KB
/
bot.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
#output-box {
width: auto;
height: 240px;
min-height: 4em;
max-height: 80em;
border: 1px;
border-style: solid;
border-color: black;
border-radius: 4px;
padding: 4px 2px 4px 2px;
resize: vertical;
color: black;
background-color: rgb(200, 200, 200);
overflow: auto;
scrollbar-width: thin;
}
#input-box {
position: relative;
height: 1.5em;
top: 2px;
border: 1px;
border-style: solid;
border-color: black;
border-radius: 4px;
}
#input-message {
width: auto;
height: 100%;
margin-right: 5.6em;
padding-right: 6px;
}
#input-send {
display: inline-block;
position: absolute;
top: 0;
right: 0;
width: 6em;
height: 100%;
}
#message {
width: 100%;
height: 100%;
padding: 0px 2px 0px 2px;
border: none;
border-radius: 0;
color: black;
background-color: rgb(200, 200, 200);
font: 16px pixel, Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace, sans-serif;
}
#message:focus {
outline: 1px solid royalblue;
}
#send {
width: 100%;
height: 100%;
}