1/* CriticMarkup Plugin Styles */ 2 3/* Addition (inserted text) */ 4ins { 5 background-color: #d4fcbc; 6 text-decoration: none; 7 color: #000; 8} 9 10/* Deletion (removed text) */ 11del { 12 background-color: #fdb8c0; 13 text-decoration: line-through; 14 color: #000; 15} 16 17/* Highlight */ 18mark { 19 background-color: #fffacd; 20 color: #000; 21} 22 23/* Comment indicator */ 24.critic-comment { 25 cursor: help; 26 color: #6495ed; 27 font-weight: bold; 28 padding: 0 2px; 29} 30 31/* Optional: Hover effects */ 32ins:hover { 33 background-color: #c1f7a3; 34} 35 36del:hover { 37 background-color: #fda0ab; 38} 39 40mark:hover { 41 background-color: #fff59d; 42} 43