basic_style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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(.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: nowrap;
  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. }
  78. a:focus {
  79. outline: 1px dotted;
  80. }
  81. a:hover,
  82. a:active {
  83. color: var(--tool-link-hover-color);
  84. outline: none;
  85. }
  86. .footer_navbar{
  87. display: flex;
  88. flex-wrap: wrap;
  89. width: 100%;
  90. }
  91. .icon{
  92. height: 1.4em;
  93. width: 1.4em;
  94. fill: #555;
  95. transition: all 0.2s ease;
  96. }
  97. .small_icon{
  98. height: 1em;
  99. width: 1em;
  100. fill: #555;
  101. -webkit-transition-duration: 0.2s;
  102. transition-duration: 0.2s;
  103. }
  104. .broder-1{
  105. border: 1px solid var(--border-line-color);
  106. }
  107. .broder-2{
  108. border: 2px solid var(--border-line-color);
  109. }
  110. .broder-r{
  111. border-radius: 5px;
  112. }