-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
119 lines (98 loc) · 1.66 KB
/
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
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
111
112
113
114
115
116
117
118
119
html {
height: 100%;
}
body {
height: 100%;
background-color: #444;
color: #fff;
}
.container {
background-color: #333;
height: 100%;
}
.row {
margin: auto 25px;
}
.row .col {
padding: 0;
}
.collection .collection-item {
background-color: #666;
}
#serial-port-dropdown {
padding: 0 0.75em;
}
.select-wrapper input.select-dropdown:disabled, .select-wrapper.disabled+label {
color: #999
}
#terminal {
height: 500px;
background-color: #000;
font-family: "Courier New";
margin: 0 25px;
display: flex;
flex-direction: column;
}
#terminal-window {
max-height: inherit;
padding: 0 10px;
overflow-x: hidden;
overflow-y: auto;
}
#terminal-text {
max-height: inherit;
white-space: pre-wrap;
overflow-x: hidden;
overflow-y: auto;
overflow-anchor: none;
}
#terminal-scroll-anchor {
padding: 0px;
overflow-anchor: auto;
height: 1px;
}
#terminal-info {
padding: 0 10px;
color: black;
font-weight: bold;
display: block;
width: 100%;
height: auto;
background-color: #999;
}
#terminal-error-container {
display: grid;
}
#terminal-error {
padding: 0 10px;
border-bottom: 1px black solid;
color: black;
font-weight: bold;
width: 100%;
height: auto;
background-color: #f88;
}
#terminal-input-container {
margin: 0 50px;
padding: 0;
}
#terminal-input-form {
padding: 0 0 0 10px;
margin-bottom: 0;
background-color: #444;
}
#terminal-input {
margin: 0;
}
#terminal-send {
height: 60px;
}
.materialize-textarea {
color: #fff;
}
.dropdown-content li {
color: #fff;
}
input {
color: #fff;
}