basic_style.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. body {
  2. font-family: "Noto Sans", "Noto Sans SC", "Noto Sans TC", Arial, Verdana;
  3. font-style: normal;
  4. color: var(--main-color);
  5. font-weight: 400;
  6. font-size: 13px;
  7. overflow-x: hidden;
  8. margin: 0;
  9. }
  10. div {
  11. -webkit-box-sizing: border-box;
  12. -moz-box-sizing: border-box;
  13. box-sizing: border-box;
  14. }
  15. hr {
  16. margin: 14px 0;
  17. border: 1px solid var(--tool-line-color);
  18. transform: scaleY(0.4);
  19. }
  20. input,
  21. button,
  22. textarea,
  23. select,
  24. optgroup,
  25. option,
  26. hr,
  27. h1,
  28. h2,
  29. h3 {
  30. font-family: inherit;
  31. font-size: inherit;
  32. font-style: inherit;
  33. font-weight: inherit;
  34. color: inherit;
  35. background-color: inherit;
  36. -webkit-box-sizing: border-box;
  37. -moz-box-sizing: border-box;
  38. box-sizing: border-box;
  39. }
  40. input[type="text"],
  41. input[type="input"],
  42. textarea {
  43. font-weight: 300;
  44. width: 100%;
  45. border: 1px solid var(--btn-border-line-color);
  46. border-radius: 4px;
  47. padding: 0.1em 0.3em;
  48. font-size: 100%;
  49. min-height: 1.2em;
  50. margin: 2px 0;
  51. }
  52. select {
  53. font-weight: 400;
  54. border: 1px solid #aaaaaa;
  55. padding: 2px 4px;
  56. min-height: 2em;
  57. border-radius: 4px;
  58. cursor: pointer;
  59. margin: 3px 0;
  60. }
  61. ul li {
  62. white-space: nowrap;
  63. color: inherit;
  64. margin: 0px;
  65. padding: 0px;
  66. word-break: keep-all;
  67. text-overflow: ellipsis;
  68. list-style-type: none;
  69. }
  70. a,
  71. a:link,
  72. a:visited {
  73. color: var(--link-color);
  74. text-decoration: none;
  75. cursor: pointer;
  76. }
  77. a:focus {
  78. outline: 1px dotted;
  79. }
  80. a:hover,
  81. a:active {
  82. color: var(--tool-link-hover-color);
  83. outline: none;
  84. }
  85. .footer_navbar {
  86. display: flex;
  87. flex-wrap: wrap;
  88. width: 100%;
  89. }
  90. .icon {
  91. height: 1.4em;
  92. width: 1.4em;
  93. fill: #555;
  94. transition: all 0.2s ease;
  95. }
  96. .small_icon {
  97. height: 1em;
  98. width: 1em;
  99. fill: #555;
  100. -webkit-transition-duration: 0.2s;
  101. transition-duration: 0.2s;
  102. }
  103. .broder-1 {
  104. border: 1px solid var(--border-line-color);
  105. }
  106. .broder-2 {
  107. border: 2px solid var(--border-line-color);
  108. }
  109. .broder-r {
  110. border-radius: 5px;
  111. }
  112. .tran:hover .edit_button {
  113. display: inline-block;
  114. }
  115. .edit_button {
  116. position: absolute;
  117. display: none;
  118. width: auto;
  119. min-width: 24px;
  120. height: auto;
  121. min-height: 24px;
  122. cursor: pointer;
  123. background: url(edit.svg);
  124. background-repeat: no-repeat;
  125. background-size: contain;
  126. margin: 0 6px;
  127. margin-left: -24px;
  128. color: var(--tool-color);
  129. }