Spaces:
Running
Running
body { | |
background-color: #1C1C1C; | |
font-family: "Signika", sans-serif; | |
user-select: none; | |
} | |
.buttons { | |
padding: 4px 10px; | |
border: none; | |
border-radius: 20px; | |
font-size: 15px; | |
font-family: "Arial", sans-serif; | |
color: black; | |
cursor: pointer; | |
} | |
.delete-mode-button { | |
font-size: 25px; | |
padding: 2px 10px; | |
position: relative; | |
top: 3px; | |
} | |
.container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
} | |
#input-text { | |
width: 100%; | |
height: 100px; | |
color: white; | |
font-size: 14px; | |
margin-bottom: -8px; | |
box-sizing: border-box; | |
} | |
.text-container { | |
border-radius: 20px; | |
padding: 10px 10px; | |
border: none; | |
outline: none; | |
background-color: black; | |
} | |
.bubble { | |
display: inline-block; | |
padding: 10px 10px; | |
border-radius: 20px; | |
margin-bottom: 5px; | |
margin-right: 3px; | |
cursor: move; | |
} | |
.bubble-text { | |
color: white; | |
text-shadow: 0px 0px 8px black; | |
user-select: none; | |
} | |
.bubble-container { | |
display: flex; | |
flex-wrap: wrap; | |
user-select: none; | |
} | |
.ghost { | |
opacity: 0; | |
} | |
.mitigate-mode { | |
opacity: 0.66; | |
} | |
.bubble.mitigate-mode { | |
cursor: crosshair; | |
} | |
.bubble.mitigate-mode:hover { | |
opacity: 1; | |
filter: saturate(0); | |
} | |
.delete-mode { | |
opacity: 0.66; | |
} | |
.bubble.delete-mode { | |
cursor: crosshair; | |
} | |
.bubble.delete-mode:hover { | |
opacity: 0.33; | |
} | |
.emphasis-mode { | |
opacity: 0.66; | |
} | |
.bubble.emphasis-mode { | |
cursor: crosshair; | |
} | |
.bubble.emphasis-mode:hover { | |
opacity: 1; | |
filter: saturate(3); | |
} | |
.text-container:focus { | |
background-color: #3a3a3a; | |
} | |
#mitigate-mode-button.active { | |
background-color: #4299e3; | |
} | |
#delete-mode-button.active { | |
background-color: #e3a442; | |
color: white; | |
} | |
#emphasis-mode-button.active { | |
background-color: #e34242; | |
} | |
.tooltip { | |
position: relative; | |
display: inline-block; | |
cursor: help; | |
} | |
.tooltip:hover .tooltiptext { | |
visibility: visible; | |
opacity: 1; | |
} |