File size: 1,888 Bytes
350a7cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
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;
}