BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

log.scss 483B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* todo: Map selectors to message types */
  2. .log1 {
  3. color: purple;
  4. }
  5. .log2 {
  6. color: yellow;
  7. }
  8. /* Edited */
  9. .log3 {
  10. color: blue;
  11. }
  12. .log4 {
  13. font-weight: bold;
  14. }
  15. .log5 {
  16. text-decoration: underline;
  17. }
  18. /* Added */
  19. .good {
  20. color: green;
  21. font-weight: bold;
  22. }
  23. /* Deleted */
  24. .bad {
  25. color: red;
  26. font-weight: bold;
  27. }
  28. .goodish {
  29. font-weight: bold;
  30. color: scale-color(green, $alpha: 50%);
  31. }
  32. .badish {
  33. font-weight: bold;
  34. color: orange;
  35. }