You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scraping-tool-poc/public/scraping-tool-stylesheet.css

79 lines
1.4 KiB
CSS

* {
cursor: default;
}
.___scraping___tool___ {
position: fixed;
right: 32px;
top: 32px;
background-color: red;
color: white;
padding: 8px;
z-index: 999999999;
}
.___scraping___tool___overlay {
pointer-events: none;
/* opacity: 0.4; */
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 999999990;
}
.___scraping___tool___overlay.active {
/* background-color: rgba(240, 0, 0, 0.4); */
font-family: sans-serif;
font-weight: normal;
}
.___scraping___tool___hover, .___scraping___tool___selection, .___scraping___tool___secondarySelection, .___scraping___tool___tooltip {
position: absolute;
z-index: 999999991;
}
.___scraping___tool___hover {
background-color: rgba(216, 61, 255, 0.4);
}
.___scraping___tool___selection {
background-color: rgba(0, 255, 0, 0.4);
}
.___scraping___tool___tooltip {
background-color: black;
color: white;
padding: .2em .4em;
font-family: sans-serif;
font-weight: normal;
}
.___scraping___tool___secondarySelection {
background-color: rgb(104, 241, 230);
}
.___scraping___tool___candidatePicker {
pointer-events: initial;
z-index: 999999992;
position: absolute;
left: 16px;
top: 16px;
padding: .6em 1em;
background-color: rgba(43, 43, 43, 0.9);
color: white;
}
.___scraping___tool___candidate {
padding: .2em .5em;
font-size: 15px;
}
.___scraping___tool___candidate:hover {
background-color: rgb(88, 88, 88);
}