basic_style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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,
  62. li {
  63. white-space: normal;
  64. color: inherit;
  65. margin: 0px;
  66. padding: 0px;
  67. word-break: keep-all;
  68. text-overflow: ellipsis;
  69. list-style-type: none;
  70. }
  71. a,
  72. a:link,
  73. a:visited {
  74. color: var(--link-color);
  75. text-decoration: none;
  76. cursor: pointer;
  77. white-space: nowrap;
  78. }
  79. a:focus {
  80. outline: 1px dotted;
  81. }
  82. a:hover,
  83. a:active {
  84. color: var(--tool-link-hover-color);
  85. outline: none;
  86. }
  87. .footer_navbar {
  88. display: flex;
  89. flex-wrap: wrap;
  90. width: 100%;
  91. }
  92. .icon {
  93. height: 20px;
  94. width: 20px;
  95. fill: #555;
  96. transition: all 0.2s ease;
  97. }
  98. .small_icon {
  99. height: 1em;
  100. width: 1em;
  101. fill: #555;
  102. -webkit-transition-duration: 0.2s;
  103. transition-duration: 0.2s;
  104. }
  105. .broder-1 {
  106. border: 1px solid var(--border-line-color);
  107. }
  108. .broder-2 {
  109. border: 2px solid var(--border-line-color);
  110. }
  111. .broder-r {
  112. border-radius: 5px;
  113. }