ao.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. h1, h2, h3, p, span, div { font-family: "Microsoft JhengHei","SimHei", "Apple LiGothic Medium", "STHeiti"}
  2. /* General purpose theme settings */
  3. body.whiteTheme {
  4. --body_text: black;
  5. --body_background: rgb(250, 250, 250);
  6. --body_background_secondary: #fcfcfc;
  7. --body_background_active: #fcfcfce1;
  8. --divider: #f0f0f0;
  9. --theme_color: #92cfe7;
  10. --text_color: rgb(29, 29, 29);
  11. --text_color_secondary: rgb(139, 139, 139);
  12. --text_color_invert: rgb(182, 182, 182);
  13. }
  14. body.darkTheme{
  15. --body_text: rgb(236, 236, 236);
  16. --body_background: rgb(37, 37, 37);
  17. --body_background_secondary: #27292d;
  18. --body_background_active: #3d3f47;
  19. --divider: #465561;
  20. --theme_color: #6682c4;
  21. --text_color: rgb(241, 241, 241);
  22. --text_color_secondary: rgb(214, 214, 214);
  23. --text_color_invert: rgb(63, 63, 63);
  24. }
  25. :root{
  26. --default_fw_theme: rgba(26, 26, 26, 0.3);
  27. }
  28. /* floatWindow CSS */
  29. .floatWindow{
  30. position:fixed;
  31. width:1024px;
  32. height:520px;
  33. left:0px;
  34. top:0px;
  35. border-radius: 6px;
  36. }
  37. .floatWindow .controls .title{
  38. color:white;
  39. display: inline-block;
  40. position:absolute;
  41. left:40.5px;
  42. top:5px;
  43. max-width: calc(100% - 140px);
  44. white-space: nowrap;
  45. overflow: hidden;
  46. text-overflow: ellipsis;
  47. }
  48. .floatWindow .controls .moduleicon{
  49. height:18px;
  50. width:18px;
  51. margin-top:6px;
  52. margin-left:12.5px;
  53. display: inline-block;
  54. }
  55. .floatWindow .controls{
  56. position:absolute;
  57. top:0px;
  58. left:0px;
  59. width: 100%;
  60. height:30px;
  61. padding-bottom:2px;
  62. user-select: none;
  63. border-radius: 6px 6px 0px 0px;
  64. }
  65. .floatWindow .iframewrapper{
  66. position:absolute;
  67. top: 30px;
  68. width:100%;
  69. height: calc(100% - 30px);
  70. border-left: 3px solid #37393e;
  71. border-right: 3px solid #37393e;
  72. border-bottom: 3px solid #37393e;
  73. border-radius: 0px 0px 6px 6px;
  74. }
  75. .floatWindow .iframewrapper .iframecover{
  76. position:absolute;
  77. top:0px;
  78. left:0px;
  79. width:100%;
  80. height:100%;
  81. display:none;
  82. }
  83. .floatWindow .iframewrapper iframe{
  84. height:100%;
  85. width:100%;
  86. overflow:hidden;
  87. position:absolute;
  88. top:0px;
  89. left:0px;
  90. border-radius: 0px 0px 6px 6px;
  91. }
  92. .floatWindow .fwcontrol .buttons:hover{
  93. background-color: rgba(224, 224, 224,0.75);
  94. }
  95. .floatWindow .fwcontrol .buttons.close{
  96. border-top-right-radius: 6px !important;
  97. }
  98. .floatWindow .fwcontrol .buttons.close:hover{
  99. background-color: rgba(232,142,142,0.7);
  100. }
  101. @supports (backdrop-filter: none) {
  102. .floatWindow{
  103. box-shadow: rgb(61, 61, 61) 1px 1px 4px;
  104. }
  105. .floatWindow .controls {
  106. background-color:var(--default_fw_theme);
  107. backdrop-filter: blur(5px);
  108. }
  109. .floatWindow .controls .title{
  110. color: white;
  111. }
  112. .floatWindow .iframewrapper{
  113. border-left: 3px solid var(--default_fw_theme);;
  114. border-right: 3px solid var(--default_fw_theme);;
  115. border-bottom: 3px solid var(--default_fw_theme);;
  116. backdrop-filter: blur(5px);
  117. }
  118. .floatWindow .fwcontrol .buttons:hover{
  119. background-color: rgba(224, 224, 224,.3);
  120. }
  121. /*
  122. White theme
  123. */
  124. .floatWindow.white{
  125. /* Updates 27-12-2020: Added box shadow and transparent boarder under backdrop filter mode*/
  126. box-shadow: rgb(61, 61, 61) 1px 1px 4px;
  127. }
  128. .floatWindow.white .controls {
  129. background-color:rgba(255,255,255, 0.85);
  130. backdrop-filter: blur(5px);
  131. }
  132. .floatWindow.white .controls .title{
  133. font-weight: 130%;
  134. color: rgb(20, 20, 20);
  135. padding-right: 12.5px;
  136. }
  137. .floatWindow.white .iframewrapper{
  138. border-left: 3px solid rgba(255,255,255,0.6);
  139. border-right: 3px solid rgba(255,255,255,0.6);;
  140. border-bottom: 3px solid rgba(255,255,255,0.6);;
  141. backdrop-filter: blur(5px);
  142. }
  143. .floatWindow.white .fwcontrol .buttons:hover{
  144. background-color: rgba(180, 180, 180,1);
  145. }
  146. .floatWindow.white .fwcontrol .buttons.close:hover{
  147. background-color: rgba(232,142,142,0.7);
  148. }
  149. }
  150. .floatWindow .fwcontrol{
  151. position:absolute;
  152. top:0px;
  153. right:0px;
  154. display: inline-block;
  155. }
  156. .floatWindow .fwcontrol .buttons{
  157. vertical-align: top;
  158. padding-top:5px;
  159. padding-bottom:2px;
  160. padding-left:10px;
  161. padding-right:10px;
  162. display: inline-block;
  163. height:30px !important;
  164. color:white;
  165. cursor: pointer;
  166. }
  167. .floatWindow .fwcontrol .buttons img{
  168. width:18px;
  169. height:auto;
  170. }
  171. .floatWindow .iframewrapper.widthHover{
  172. cursor:w-resize;
  173. }
  174. .floatWindow .iframewrapper.rightCorner{
  175. cursor:se-resize;
  176. }
  177. .floatWindow .iframewrapper.leftCorner{
  178. cursor:sw-resize;
  179. }
  180. .floatWindow .iframewrapper.heighHover{
  181. cursor:s-resize;
  182. }
  183. .fwdragger.resizbleCursor{
  184. cursor:s-resize;
  185. }
  186. .fwdragger {
  187. --text-outline-color: rgba(36, 36, 36, 0.75);
  188. text-shadow: 1px 0 0 var(--text-outline-color), 0 -1px 0 var(--text-outline-color), 0 1px 0 var(--text-outline-color), -1px 0 0 var(--text-outline-color);
  189. }