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.

39 lines
1.1 KiB

1 year ago
  1. <style>
  2. a:not(.icon) {
  3. text-decoration-color: #<%= theme.tcolor %>;
  4. background-image: linear-gradient(
  5. to bottom,
  6. rgba(0, 0, 0, 0) 50%,
  7. #<%= theme.tcolor %> 50%
  8. );
  9. }
  10. blockquote {
  11. border-left: 8px solid #<%= theme.tcolor %>;
  12. }
  13. .nanobar .bar {
  14. background: #<%= theme.tcolor %>;
  15. }
  16. .button.button-primary:hover,
  17. button.button-primary:hover,
  18. input[type="submit"].button-primary:hover,
  19. input[type="reset"].button-primary:hover,
  20. input[type="button"].button-primary:hover,
  21. .button.button-primary:focus,
  22. button.button-primary:focus,
  23. input[type="submit"].button-primary:focus,
  24. input[type="reset"].button-primary:focus,
  25. input[type="button"].button-primary:focus {
  26. background-color: #<%= theme.tcolor %>;
  27. border-color: #<%= theme.tcolor %>;
  28. }
  29. input[type="email"]:focus,
  30. input[type="number"]:focus,
  31. input[type="search"]:focus,
  32. input[type="text"]:focus,
  33. input[type="tel"]:focus,
  34. input[type="url"]:focus,
  35. input[type="password"]:focus,
  36. textarea:focus,
  37. select:focus {
  38. border: 1px solid #<%= theme.tcolor %>;
  39. }
  40. </style>