2019-10-23 15:38:35 +00:00
|
|
|
@import "variables";
|
|
|
|
|
|
|
|
vn-debug-info {
|
|
|
|
position: fixed;
|
2020-04-02 12:20:57 +00:00
|
|
|
bottom: 16px;
|
|
|
|
left: 16px;
|
|
|
|
padding: 16px;
|
|
|
|
min-width: 128px;
|
2019-10-23 15:38:35 +00:00
|
|
|
background-color: #3f51b5;
|
|
|
|
color: $color-font-dark;
|
|
|
|
border-radius: 4px;
|
|
|
|
z-index: 999;
|
|
|
|
box-shadow: $shadow;
|
|
|
|
transition: opacity 400ms ease-in-out;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: .5;
|
|
|
|
}
|
|
|
|
& > h6 {
|
|
|
|
font-weight: normal;
|
|
|
|
color: rgba(255, 255, 255, .5);
|
2020-04-02 12:20:57 +00:00
|
|
|
font-size: 16px;
|
2019-10-23 15:38:35 +00:00
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
& > li {
|
2020-04-02 12:20:57 +00:00
|
|
|
margin-top: 3px;
|
2019-10-23 15:38:35 +00:00
|
|
|
font-size: .95em;
|
|
|
|
|
|
|
|
& > span {
|
2020-04-02 12:20:57 +00:00
|
|
|
padding: .05em 3px;
|
2019-10-23 15:38:35 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
transition: background-color 200ms ease-in-out;
|
|
|
|
|
|
|
|
&.alert {
|
|
|
|
background-color: $color-alert;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|