start.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. body {
  2. font-size: 25px;
  3. line-height: 1.25em !important;
  4. text-align: justify;
  5. -webkit-touch-callout: none;
  6. -webkit-user-select: none;
  7. -khtml-user-select: none;
  8. -moz-user-select: none;
  9. -ms-user-select: none;
  10. user-select: none;
  11. }
  12. .text-highlight {
  13. -webkit-transition: color .3s linear, text-shadow .3s linear;
  14. -khtml-transition: color .3s linear, text-shadow .3s linear;
  15. -moz-transition: color .3s linear, text-shadow .3s linear;
  16. -ms-transition: color .3s linear, text-shadow .3s linear;
  17. transition: color .3s linear, text-shadow .3s linear;
  18. }
  19. .text-highlight.active {
  20. color: red;
  21. -webkit-text-shadow: 0px 0px 1px rgba(255, 0, 0, 1);
  22. -khtml-text-shadow: 0px 0px 1px rgba(255, 0, 0, 1);
  23. -moz-text-shadow: 0px 0px 1px rgba(255, 0, 0, 1);
  24. -ms-text-shadow: 0px 0px 1px rgba(255, 0, 0, 1);
  25. text-shadow: 0px 0px 1px rgba(255, 0, 0, 1);
  26. -webkit-transition: color .3s linear, text-shadow .3s linear;
  27. -khtml-transition: color .3s linear, text-shadow .3s linear;
  28. -moz-transition: color .3s linear, text-shadow .3s linear;
  29. -ms-transition: color .3s linear, text-shadow .3s linear;
  30. transition: color .3s linear, text-shadow .3s linear;
  31. }
  32. br {
  33. margin-bottom: 1em;
  34. }