bratFastMode.css 944 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .hidden {
  2. display: none !important;
  3. }
  4. /* Overwritting header size */
  5. #document_name > input {
  6. width: calc(100% - 100px) !important;
  7. }
  8. /* Button UI style */
  9. #bratFastModeUI, #bratDarkMode {
  10. float: right;
  11. cursor: pointer;
  12. font-size: 0.7em;
  13. padding: 3px;
  14. color: white;
  15. border-radius: 5px;
  16. margin-left: 1px;
  17. }
  18. #bratFastModeUI.desactivate, #bratDarkMode.desactivate {
  19. background-color: #940000;
  20. border: solid 1px #b30101;
  21. }
  22. #bratFastModeUI.activate, #bratDarkMode.activate {
  23. background-color: #0e7b21;
  24. border: solid 1px #025d15;
  25. }
  26. .targetWordSelection {
  27. color: red !important;
  28. font: bold;
  29. }
  30. /*
  31. Trigger word style
  32. */
  33. .triggerWord {
  34. fill: #ffa604;
  35. text-decoration: underline;
  36. font-weight: bold;
  37. }
  38. /*
  39. Dark Mode
  40. */
  41. .svg_dark .background0 {
  42. fill: #040404;
  43. }
  44. .svg_dark .background1 {
  45. fill: #3c3838;
  46. }
  47. .svg_dark {
  48. fill: white;
  49. background: black;
  50. }