51 lines
968 B
SCSS
51 lines
968 B
SCSS
#wpjDbgr {
|
|
position: fixed;
|
|
top: 10px;
|
|
right: 10px;
|
|
background: black;
|
|
border: 1px solid #aaa;
|
|
color: white;
|
|
padding: 20px;
|
|
z-index: 1000;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
max-width: 300px;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
#wpjSEODbgr {
|
|
word-break: break-all;
|
|
position: fixed;
|
|
top: 10px;
|
|
right: 10px;
|
|
background: rgba(0, 0, 0, .7);
|
|
color: white;
|
|
padding: 20px;
|
|
z-index: 1000;
|
|
font-size: 12px;
|
|
letter-spacing: .015em;
|
|
line-height: 1.6;
|
|
max-width: 300px;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
span {
|
|
font-weight: normal;
|
|
display: block;
|
|
padding-bottom: 5px;
|
|
text-transform: uppercase;
|
|
font-size: 10px;
|
|
color: #999;
|
|
}
|
|
|
|
hr {
|
|
margin: 5px 0;
|
|
border: 0;
|
|
border-top: 1px solid #333;
|
|
}
|
|
}
|
|
|
|
body.wpj-debug-components [data-component-info] {
|
|
outline: white dashed 3px !important;
|
|
box-shadow: 0 0 0 3px black;
|
|
}
|