overflow-scanner
Version:
Vulnerability scanning using graphs!
61 lines (57 loc) • 1 kB
CSS
#lg {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 70vh;
}
#output {
position: fixed;
bottom: 0;
left: 0;
width: 70vw;
height: 30vh;
background: darkslategray;
padding: .5em;
box-sizing: border-box;
overflow-y: scroll;
}
#logs > div, #tasks > div {
background: red;
color: white;
border-radius: .5em;
margin: .5em;
padding: .5em;
box-shadow: 0 5px 5px #0005;
font-family: monospace;
}
#logs > div.warn {
background: yellow;
color: black;
}
#logs > div.info {
background: cornflowerblue;
}
#tasks > div {
background: lime;
color: black;
}
#tasks {
position: fixed;
bottom: 0;
right: 0;
width: 30vw;
height: 30vh;
background: darkslateblue;
padding: .5em;
box-sizing: border-box;
overflow-y: scroll;
}
button {
background: white;
border: 2px solid black;
margin: .25em;
padding: .5em;
border-radius: .5em;
cursor: pointer;
}