forked from skewten/PYE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.css
More file actions
45 lines (39 loc) · 645 Bytes
/
debug.css
File metadata and controls
45 lines (39 loc) · 645 Bytes
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
#debug_console{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 99px;
overflow-y: auto;
overflow-x: hidden;
border-top: 1px white solid;
background-color: #222;
z-index: 2000;
}
#debug_console .msg{
width: 100%;
height: auto;
font-family: monospace;
word-wrap: break-word;
padding: 0;
margin: 0;
border: none;
border-radius: 0;
color: white;
font-weight: bold;
}
#debug_console .msg.error{
background-color: #800;
}
#debug_console .msg.success{
background-color: #080;
}
#debug_console .msg.warn{
background-color: #440;
}
#debug_console .msg.log{
background-color: #111;
}
body{
padding-bottom: 105px;
}