guide.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. guide{
  2. position: relative;
  3. display:inline-block;
  4. width: auto;
  5. min-width: 14px;
  6. height: auto;
  7. min-height: 14px;
  8. cursor: pointer;
  9. background: url(guide_icon.svg);
  10. background-repeat: no-repeat;
  11. background-size: contain;
  12. margin: 0 6px;
  13. color: var(--tool-color);
  14. }
  15. guide:hover .guide_contence{
  16. display:inline-block;
  17. }
  18. .guide_contence {
  19. border-top: 7px;
  20. position: absolute;
  21. border: 2px solid var(--btn-border-color);
  22. border-radius: 10px;
  23. top:100%;
  24. width: max-content;
  25. min-width:18em;
  26. min-height:15em;
  27. padding:10px;
  28. background-color: var(--tool-bg-color);
  29. box-shadow: 0 0 10px rgba(0,0,0,0.15);
  30. font-size:10pt;
  31. text-align:left;
  32. display:none;
  33. }
  34. /*
  35. .guide_contence:after {
  36. content: "\00a0";
  37. width: 0;
  38. height: 0;
  39. display: block;
  40. border-style: solid;
  41. border-width: 10px;
  42. border-color: transparent transparent white transparent;
  43. position: absolute;
  44. top: -20px;
  45. }
  46. */
  47. .guide_contence h1{
  48. font-size:1.5em;
  49. font-weight:700;
  50. }
  51. .guide_contence h2{
  52. font-size:1.3em;
  53. font-weight:700;
  54. }
  55. .guide_contence h3{
  56. font-size:1.1em;
  57. font-weight:700;
  58. }
  59. .guide_contence h4{
  60. font-size:1em;
  61. font-weight:700;
  62. }
  63. .guide_contence li{
  64. display: block;
  65. white-space: unset;
  66. word-break: normal;
  67. }