-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
129 lines (112 loc) · 1.98 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
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
120
121
122
123
124
125
126
127
128
129
.m3c-wrapper {
background-color: rgba(0, 0, 0, 0.5);
height: 100%;
position: fixed;
width: 100%;
z-index: 999999999;
}
.m3c-console-body {
background-color: #232a35;
bottom: 0;
color: #f5f5f5;
display: flex;
flex-direction: column;
height: 50%;
max-height: 100%;
min-height: 182px;
position: fixed;
width: 100%;
}
.m3c-resize {
background-color: transparent;
cursor: ns-resize;
flex-shrink: 0;
height: 7px;
z-index: 999;
}
.m3c-resize:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.m3c-header {
align-items: center;
background-color: #343c4a;
display: flex;
flex-shrink: 0;
font-size: 0.8rem;
font-weight: 600;
justify-content: space-between;
margin-top: -7px;
padding: 0.2rem 0.75rem;
}
.m3c-logs {
flex: 1 1 auto;
height: inherit;
overflow-y: auto;
}
.m3c-log {
border-bottom: 2px solid #343c4a;
padding: 0.2rem 0.75rem;
font-family: monospace;
display: flex;
}
.m3c-log-error {
background-color: #4e3131;
color: red;
}
.m3c-log-warn {
background-color: #44441f;
color: yellow;
}
.m3c-log-icon {
align-items: center;
display: flex;
height: 18px;
justify-content: center;
margin-right: 0.3rem;
text-align: center;
width: 20px;
}
.m3c-log-message {
font-size: 0.8rem;
user-select: text;
}
.m3c-footer {
background-color: #343c4a;
display: flex;
flex-shrink: 0;
padding: 0.2rem 0.75rem;
}
.m3c-code-glyph {
line-height: 23px;
margin-right: 0.2rem;
}
.m3c-input {
background-color: transparent;
border: none;
box-sizing: border-box;
color: white;
font-family: monospace;
font-size: 0.8rem;
height: 23px;
max-height: 172px;
outline: none;
resize: none;
width: 100%;
}
.m3c-button {
background-color: transparent;
border-radius: 4px;
cursor: pointer;
display: inline-block;
padding: 5px;
}
.m3c-button:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.m3c-no-pad {
padding: 0 !important;
}
.m3c-fit {
height: fit-content !important;
min-height: auto !important;
}