UNPKG

693 BCSSView Raw
1.redbox {
2 box-sizing: border-box;
3 font-family: sans-serif;
4 font-size: 1em;
5 position: fixed;
6 padding: 10px;
7 top: 0;
8 bottom: 0;
9 left: 0;
10 width: 100%;
11 background: rgb(204, 0, 0);
12 color: white;
13}
14
15.redbox .message {
16 font-weight: bold;
17}
18
19.redbox .stack {
20 font-family: monospace;
21 margin-top: 2em;
22}
23
24.redbox .stack .frame {
25 margin-top: 1em;
26}
27
28.redbox .stack .frame .file {
29 font-size: 0.8em;
30 color: #ffffff;
31 color: rgba(255, 255, 255, 0.7);
32}
33
34.redbox .stack .frame .file {
35 font-size: 0.8em;
36 color: #ffffff;
37 color: rgba(255, 255, 255, 0.7);
38}
39
40.redbox .stack .frame .file a {
41 text-decoration: none;
42 color: #ffffff;
43 color: rgba(255, 255, 255, 0.7);
44}