-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (74 loc) · 1.34 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
76
77
78
79
80
81
82
83
84
.inputarea {
font-family: monospace;
font-size:1.225em;
border: 0px thin black;
border-radius: 5px;
overflow: hidden;
padding: 0.2em;
background-color: #e0f0e0;
white-space: nowrap;
line-height: 1.225em;
overflow-x: scroll;
width:calc(100% - 3em);
}
.inputarea:hover {
background-color: #f5f5f5;
border: 1px solid black;
}
.inputarea:focus {
background-color: #ffffbf;
color: #1a1a1a;
border: 1px solid black;
}
.good {
background: #d0f0d0;
border: 2px solid green;
padding: 1em;
border-radius: 1em;
}
.bad {
background: #f0d0d0;
border: 2px solid red;
padding: 1em;
border-radius: 1em;
}
.info {
background: #d0d0f0;
border: 2px solid blue;
padding: 1em;
border-radius: 1em;
}
.inputprompt {
font-family: 1em monospace;
overflow: hidden;
outline: none;
resize:none;
background-color: #e0e0e0;
white-space: nowrap;
height:1em;
width:calc(100% - 3em);
line-height: 1em;
border-radius: 5px;
border: 0px solid #000000;
box-shadow: 0 0 0 0;
outline: none;
}
.inputprompt:hover {
background-color: #f5f5f5
}
.inputprompt:focus {
background-color: #ffffbf;
color: #1A1A1A
}
div.prompt-entry {
width: 8px;
height: 100%;
box-sizing: border-box;
border: 1px solid #d3d3d3;
border-right: none;
}
canvas {
display: block;
width: calc(100% - 1em);
height: 100%;
}