term.css 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .term_link:hover .guide_contence {
  2. display: inline-block;
  3. }
  4. .term_meaning {
  5. font-weight: 700;
  6. }
  7. .term_author {
  8. font-size: 80%;
  9. color: gray;
  10. }
  11. .term_tag {
  12. font-size: 80%;
  13. font-weight: 500;
  14. margin: 0 8px;
  15. }
  16. .term_link {
  17. cursor: pointer;
  18. position: relative;
  19. }
  20. .term_link,
  21. .term_link_new {
  22. color: blue;
  23. padding-left: 2px;
  24. padding-right: 2px;
  25. }
  26. .term_link_new {
  27. color: red;
  28. }
  29. note:hover chapter {
  30. display: inline;
  31. }
  32. .ref > chapter:first-child {
  33. display: inline;
  34. }
  35. chapter {
  36. display: none;
  37. color: var(--box-bg-color1);
  38. text-decoration: none;
  39. cursor: pointer;
  40. }
  41. chapter:hover {
  42. color: var(--link-color);
  43. text-decoration: underline;
  44. }
  45. para {
  46. background-color: var(--drop-bg-color);
  47. padding: 2px 8px;
  48. text-decoration: none;
  49. cursor: pointer;
  50. color: var(--btn-border-color);
  51. border-radius: 5px;
  52. }
  53. para:hover {
  54. text-decoration: underline;
  55. }