hexo-theme-redefine-x 2.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (319) hide show
  1. package/.github/ISSUE_TEMPLATE/bug-chinese.yml +115 -0
  2. package/.github/ISSUE_TEMPLATE/bug-english.yml +106 -0
  3. package/.github/ISSUE_TEMPLATE/enhancement-chinese.yml +55 -0
  4. package/.github/ISSUE_TEMPLATE/enhancement-english.yml +55 -0
  5. package/.github/workflows/build-and-commit.yml +49 -0
  6. package/.github/workflows/npm-publish.yml +34 -0
  7. package/.github/workflows/stale-issues.yml +20 -0
  8. package/CHANGELOG_REDEFINE_X.md +236 -0
  9. package/CODE_OF_CONDUCT.md +128 -0
  10. package/CONTRIBUTING.md +51 -0
  11. package/DONATION.md +82 -0
  12. package/LICENSE +674 -0
  13. package/README.md +135 -0
  14. package/README_zh-CN.md +138 -0
  15. package/README_zh-TW.md +137 -0
  16. package/TODO.md +215 -0
  17. package/_config.yml +489 -0
  18. package/languages/en.yml +93 -0
  19. package/languages/es.yml +92 -0
  20. package/languages/fr.yml +92 -0
  21. package/languages/ja.yml +92 -0
  22. package/languages/zh-CN.yml +95 -0
  23. package/languages/zh-TW.yml +94 -0
  24. package/layout/404.ejs +1 -0
  25. package/layout/archive.ejs +1 -0
  26. package/layout/category.ejs +1 -0
  27. package/layout/components/comments/comment.ejs +22 -0
  28. package/layout/components/comments/giscus.ejs +42 -0
  29. package/layout/components/comments/gitalk.ejs +47 -0
  30. package/layout/components/comments/twikoo.ejs +50 -0
  31. package/layout/components/comments/waline.ejs +34 -0
  32. package/layout/components/footer/footer.ejs +99 -0
  33. package/layout/components/header/head.ejs +222 -0
  34. package/layout/components/header/navbar.ejs +163 -0
  35. package/layout/components/header/preloader.ejs +148 -0
  36. package/layout/components/header/progress-bar.ejs +12 -0
  37. package/layout/components/plugins/aplayer.ejs +3 -0
  38. package/layout/components/scripts.ejs +90 -0
  39. package/layout/components/sidebar/author.ejs +6 -0
  40. package/layout/components/sidebar/avatar.ejs +3 -0
  41. package/layout/components/sidebar/statistics.ejs +14 -0
  42. package/layout/components/swup.ejs +27 -0
  43. package/layout/index.ejs +1 -0
  44. package/layout/layout.ejs +13 -0
  45. package/layout/page.ejs +57 -0
  46. package/layout/pages/archive/archive.ejs +3 -0
  47. package/layout/pages/bookmarks/bookmarks.ejs +68 -0
  48. package/layout/pages/category/categories.ejs +11 -0
  49. package/layout/pages/category/category-detail.ejs +6 -0
  50. package/layout/pages/friends/friends-link.ejs +59 -0
  51. package/layout/pages/home/home-article.ejs +52 -0
  52. package/layout/pages/home/home-background.ejs +33 -0
  53. package/layout/pages/home/home-banner.ejs +234 -0
  54. package/layout/pages/home/home-content.ejs +62 -0
  55. package/layout/pages/home/home-sidebar.ejs +78 -0
  56. package/layout/pages/masonry/masonry.ejs +28 -0
  57. package/layout/pages/notfound/notfound.ejs +8 -0
  58. package/layout/pages/page-template.ejs +23 -0
  59. package/layout/pages/post/article-content.ejs +153 -0
  60. package/layout/pages/post/article-copyright.ejs +69 -0
  61. package/layout/pages/post/article-info.ejs +78 -0
  62. package/layout/pages/post/post-tools.ejs +17 -0
  63. package/layout/pages/post/toc.ejs +15 -0
  64. package/layout/pages/shuoshuo/essays.ejs +23 -0
  65. package/layout/pages/tag/tag-detail.ejs +6 -0
  66. package/layout/pages/tag/tags.ejs +24 -0
  67. package/layout/post.ejs +1 -0
  68. package/layout/tag.ejs +1 -0
  69. package/layout/tags.ejs +1 -0
  70. package/layout/utils/image-viewer.ejs +3 -0
  71. package/layout/utils/local-search.ejs +20 -0
  72. package/layout/utils/paginator.ejs +8 -0
  73. package/layout/utils/posts-list.ejs +28 -0
  74. package/layout/utils/side-tools.ejs +51 -0
  75. package/package.json +45 -0
  76. package/scripts/config-export.js +66 -0
  77. package/scripts/data-handle.js +37 -0
  78. package/scripts/events/404.js +16 -0
  79. package/scripts/events/welcome.js +141 -0
  80. package/scripts/filters/delete-mask-handle.js +27 -0
  81. package/scripts/filters/encrypt.js +202 -0
  82. package/scripts/filters/img-handle.js +9 -0
  83. package/scripts/filters/lazyload-handle.js +350 -0
  84. package/scripts/filters/lib/hbe.default.js +15 -0
  85. package/scripts/filters/link-handle.js +42 -0
  86. package/scripts/filters/stylus-handle.js +9 -0
  87. package/scripts/filters/table-handle.js +11 -0
  88. package/scripts/helpers/meta-helpers.js +38 -0
  89. package/scripts/helpers/page-helpers.js +153 -0
  90. package/scripts/helpers/recommendation-helpers.js +367 -0
  91. package/scripts/helpers/theme-helpers.js +251 -0
  92. package/scripts/helpers/waline-helpers.js +33 -0
  93. package/scripts/modules/btn.js +85 -0
  94. package/scripts/modules/btns.js +71 -0
  95. package/scripts/modules/folding.js +34 -0
  96. package/scripts/modules/note-large.js +72 -0
  97. package/scripts/modules/note.js +64 -0
  98. package/scripts/modules/tabs.js +99 -0
  99. package/source/assets/hbe.style.css +220 -0
  100. package/source/assets/odometer-theme-minimal.css +81 -0
  101. package/source/css/build/tailwind.css +2 -0
  102. package/source/css/common/animated.styl +71 -0
  103. package/source/css/common/basic.styl +239 -0
  104. package/source/css/common/codeblock/code-block.styl +158 -0
  105. package/source/css/common/codeblock/code-theme.styl +82 -0
  106. package/source/css/common/codeblock/highlight.styl +189 -0
  107. package/source/css/common/codeblock/hljs-themes/dark/a11y-dark.styl +18 -0
  108. package/source/css/common/codeblock/hljs-themes/dark/agate.styl +18 -0
  109. package/source/css/common/codeblock/hljs-themes/dark/atom-one-dark.styl +18 -0
  110. package/source/css/common/codeblock/hljs-themes/dark/github-dark.styl +18 -0
  111. package/source/css/common/codeblock/hljs-themes/dark/monokai-sublime.styl +18 -0
  112. package/source/css/common/codeblock/hljs-themes/dark/night-owl.styl +18 -0
  113. package/source/css/common/codeblock/hljs-themes/dark/nord.styl +18 -0
  114. package/source/css/common/codeblock/hljs-themes/dark/tokyo-night-dark.styl +18 -0
  115. package/source/css/common/codeblock/hljs-themes/dark/vs2015.styl +18 -0
  116. package/source/css/common/codeblock/hljs-themes/light/atom-one-light.styl +18 -0
  117. package/source/css/common/codeblock/hljs-themes/light/default.styl +18 -0
  118. package/source/css/common/codeblock/hljs-themes/light/github.styl +18 -0
  119. package/source/css/common/colors.styl +112 -0
  120. package/source/css/common/markdown.styl +337 -0
  121. package/source/css/common/redefine-theme.styl +65 -0
  122. package/source/css/common/theme.styl +72 -0
  123. package/source/css/common/variables.styl +145 -0
  124. package/source/css/layout/_modules/aplayer.styl +799 -0
  125. package/source/css/layout/_modules/buttons.styl +42 -0
  126. package/source/css/layout/_modules/folding.styl +180 -0
  127. package/source/css/layout/_modules/notes.styl +181 -0
  128. package/source/css/layout/_modules/tabs.styl +105 -0
  129. package/source/css/layout/_partials/404.styl +14 -0
  130. package/source/css/layout/_partials/archive-list.styl +49 -0
  131. package/source/css/layout/_partials/article-copyright-info.styl +27 -0
  132. package/source/css/layout/_partials/article-meta-info.styl +62 -0
  133. package/source/css/layout/_partials/comments/comment.styl +11 -0
  134. package/source/css/layout/_partials/comments/gitalk.styl +529 -0
  135. package/source/css/layout/_partials/comments/twikoo.styl +62 -0
  136. package/source/css/layout/_partials/comments/waline.styl +1151 -0
  137. package/source/css/layout/_partials/footer.styl +59 -0
  138. package/source/css/layout/_partials/home-banner.styl +48 -0
  139. package/source/css/layout/_partials/image-viewer.styl +37 -0
  140. package/source/css/layout/_partials/local-search.styl +137 -0
  141. package/source/css/layout/_partials/navbar.styl +309 -0
  142. package/source/css/layout/_partials/page-template.styl +147 -0
  143. package/source/css/layout/_partials/paginator.styl +65 -0
  144. package/source/css/layout/_partials/post-tools.styl +43 -0
  145. package/source/css/layout/_partials/progress-bar.styl +33 -0
  146. package/source/css/layout/_partials/side-tools.styl +87 -0
  147. package/source/css/layout/_partials/tagcloud.styl +136 -0
  148. package/source/css/layout/_partials/toc.styl +105 -0
  149. package/source/css/layout/animations.styl +42 -0
  150. package/source/css/layout/archive-content.styl +8 -0
  151. package/source/css/layout/article-content.styl +257 -0
  152. package/source/css/layout/bookmarks.styl +8 -0
  153. package/source/css/layout/category-content.styl +21 -0
  154. package/source/css/layout/category-list.styl +119 -0
  155. package/source/css/layout/home-content.styl +114 -0
  156. package/source/css/layout/home-sidebar.styl +126 -0
  157. package/source/css/layout/page.styl +144 -0
  158. package/source/css/layout/tag-content.styl +30 -0
  159. package/source/css/style.styl +26 -0
  160. package/source/css/tailwind.source.css +236 -0
  161. package/source/fontawesome/all.min.css +6 -0
  162. package/source/fontawesome/brands.min.css +6 -0
  163. package/source/fontawesome/duotone.min.css +6 -0
  164. package/source/fontawesome/fontawesome.min.css +6 -0
  165. package/source/fontawesome/light.min.css +6 -0
  166. package/source/fontawesome/regular.min.css +6 -0
  167. package/source/fontawesome/sharp-solid.min.css +6 -0
  168. package/source/fontawesome/solid.min.css +6 -0
  169. package/source/fontawesome/svg-with-js.min.css +6 -0
  170. package/source/fontawesome/thin.min.css +6 -0
  171. package/source/fontawesome/v4-font-face.min.css +6 -0
  172. package/source/fontawesome/v4-shims.min.css +6 -0
  173. package/source/fontawesome/v5-font-face.min.css +6 -0
  174. package/source/fonts/Chillax/Chillax-Variable.eot +0 -0
  175. package/source/fonts/Chillax/Chillax-Variable.ttf +0 -0
  176. package/source/fonts/Chillax/Chillax-Variable.woff +0 -0
  177. package/source/fonts/Chillax/Chillax-Variable.woff2 +0 -0
  178. package/source/fonts/Chillax/chillax.css +39 -0
  179. package/source/fonts/Geist/GeistVF.ttf +0 -0
  180. package/source/fonts/Geist/GeistVF.woff +0 -0
  181. package/source/fonts/Geist/GeistVF.woff2 +0 -0
  182. package/source/fonts/Geist/geist.css +16 -0
  183. package/source/fonts/GeistMono/GeistMonoVF.ttf +0 -0
  184. package/source/fonts/GeistMono/GeistMonoVF.woff +0 -0
  185. package/source/fonts/GeistMono/GeistMonoVF.woff2 +0 -0
  186. package/source/fonts/GeistMono/geist-mono.css +16 -0
  187. package/source/images/bookmark-placeholder.svg +9 -0
  188. package/source/images/loading.svg +5 -0
  189. package/source/images/redefine-avatar.svg +1 -0
  190. package/source/images/redefine-favicon.svg +1 -0
  191. package/source/images/redefine-logo.svg +1 -0
  192. package/source/images/redefine-logo.webp +0 -0
  193. package/source/images/redefine-og.webp +0 -0
  194. package/source/images/wallhaven-wqery6-dark.webp +0 -0
  195. package/source/images/wallhaven-wqery6-light.webp +0 -0
  196. package/source/js/build/layouts/bookmarkNav.js +2 -0
  197. package/source/js/build/layouts/bookmarkNav.js.map +1 -0
  198. package/source/js/build/layouts/categoryList.js +2 -0
  199. package/source/js/build/layouts/categoryList.js.map +1 -0
  200. package/source/js/build/layouts/essays.js +2 -0
  201. package/source/js/build/layouts/essays.js.map +1 -0
  202. package/source/js/build/layouts/lazyload.js +2 -0
  203. package/source/js/build/layouts/lazyload.js.map +1 -0
  204. package/source/js/build/layouts/navbarShrink.js +2 -0
  205. package/source/js/build/layouts/navbarShrink.js.map +1 -0
  206. package/source/js/build/layouts/toc.js +2 -0
  207. package/source/js/build/layouts/toc.js.map +1 -0
  208. package/source/js/build/libs/APlayer.min.js +2 -0
  209. package/source/js/build/libs/Swup.min.js +2 -0
  210. package/source/js/build/libs/SwupPreloadPlugin.min.js +1 -0
  211. package/source/js/build/libs/SwupProgressPlugin.min.js +1 -0
  212. package/source/js/build/libs/SwupScriptsPlugin.min.js +1 -0
  213. package/source/js/build/libs/SwupScrollPlugin.min.js +1 -0
  214. package/source/js/build/libs/SwupSlideTheme.min.js +1 -0
  215. package/source/js/build/libs/Typed.min.js +10 -0
  216. package/source/js/build/libs/anime.min.js +8 -0
  217. package/source/js/build/libs/mermaid.min.js +2314 -0
  218. package/source/js/build/libs/minimasonry.min.js +1 -0
  219. package/source/js/build/libs/moment-with-locales.min.js +2 -0
  220. package/source/js/build/libs/moment.min.js +2 -0
  221. package/source/js/build/libs/odometer.min.js +2 -0
  222. package/source/js/build/libs/pangu.min.js +9 -0
  223. package/source/js/build/libs/pjax.min.js +1 -0
  224. package/source/js/build/libs/waline.js +84 -0
  225. package/source/js/build/main.js +2 -0
  226. package/source/js/build/main.js.map +1 -0
  227. package/source/js/build/plugins/aplayer.js +2 -0
  228. package/source/js/build/plugins/aplayer.js.map +1 -0
  229. package/source/js/build/plugins/hbe.js +2 -0
  230. package/source/js/build/plugins/hbe.js.map +1 -0
  231. package/source/js/build/plugins/masonry.js +2 -0
  232. package/source/js/build/plugins/masonry.js.map +1 -0
  233. package/source/js/build/plugins/mermaid.js +2 -0
  234. package/source/js/build/plugins/mermaid.js.map +1 -0
  235. package/source/js/build/plugins/pangu.js +2 -0
  236. package/source/js/build/plugins/pangu.js.map +1 -0
  237. package/source/js/build/plugins/tabs.js +2 -0
  238. package/source/js/build/plugins/tabs.js.map +1 -0
  239. package/source/js/build/plugins/typed.js +2 -0
  240. package/source/js/build/plugins/typed.js.map +1 -0
  241. package/source/js/build/tools/codeBlock.js +2 -0
  242. package/source/js/build/tools/codeBlock.js.map +1 -0
  243. package/source/js/build/tools/imageViewer.js +2 -0
  244. package/source/js/build/tools/imageViewer.js.map +1 -0
  245. package/source/js/build/tools/lightDarkSwitch.js +2 -0
  246. package/source/js/build/tools/lightDarkSwitch.js.map +1 -0
  247. package/source/js/build/tools/localSearch.js +2 -0
  248. package/source/js/build/tools/localSearch.js.map +1 -0
  249. package/source/js/build/tools/runtime.js +2 -0
  250. package/source/js/build/tools/runtime.js.map +1 -0
  251. package/source/js/build/tools/scrollTopBottom.js +2 -0
  252. package/source/js/build/tools/scrollTopBottom.js.map +1 -0
  253. package/source/js/build/tools/tocToggle.js +2 -0
  254. package/source/js/build/tools/tocToggle.js.map +1 -0
  255. package/source/js/build/utils.js +2 -0
  256. package/source/js/build/utils.js.map +1 -0
  257. package/source/js/build.js +148 -0
  258. package/source/js/layouts/bookmarkNav.js +65 -0
  259. package/source/js/layouts/categoryList.js +53 -0
  260. package/source/js/layouts/essays.js +25 -0
  261. package/source/js/layouts/lazyload.js +199 -0
  262. package/source/js/layouts/navbarShrink.js +135 -0
  263. package/source/js/layouts/toc.js +115 -0
  264. package/source/js/libs/APlayer.min.js +2 -0
  265. package/source/js/libs/APlayer.min.js.map +1 -0
  266. package/source/js/libs/Swup.min.js +2 -0
  267. package/source/js/libs/Swup.min.js.map +1 -0
  268. package/source/js/libs/SwupPreloadPlugin.min.js +1 -0
  269. package/source/js/libs/SwupPreloadPlugin.min.js.map +1 -0
  270. package/source/js/libs/SwupProgressPlugin.min.js +1 -0
  271. package/source/js/libs/SwupScriptsPlugin.min.js +1 -0
  272. package/source/js/libs/SwupScrollPlugin.min.js +1 -0
  273. package/source/js/libs/SwupScrollPlugin.min.js.map +1 -0
  274. package/source/js/libs/SwupSlideTheme.min.js +1 -0
  275. package/source/js/libs/Typed.min.js +10 -0
  276. package/source/js/libs/anime.min.js +8 -0
  277. package/source/js/libs/mermaid.min.js +2314 -0
  278. package/source/js/libs/mermaid.min.js.map +7 -0
  279. package/source/js/libs/minimasonry.min.js +1 -0
  280. package/source/js/libs/moment-with-locales.min.js +2 -0
  281. package/source/js/libs/moment.min.js +2 -0
  282. package/source/js/libs/odometer.min.js +2 -0
  283. package/source/js/libs/pangu.min.js +9 -0
  284. package/source/js/libs/pjax.min.js +1 -0
  285. package/source/js/libs/waline.js +84 -0
  286. package/source/js/libs/waline.js.map +1 -0
  287. package/source/js/main.js +95 -0
  288. package/source/js/plugins/aplayer.js +33 -0
  289. package/source/js/plugins/hbe.js +350 -0
  290. package/source/js/plugins/masonry.js +115 -0
  291. package/source/js/plugins/mermaid.js +7 -0
  292. package/source/js/plugins/pangu.js +12 -0
  293. package/source/js/plugins/tabs.js +29 -0
  294. package/source/js/plugins/typed.js +62 -0
  295. package/source/js/tools/codeBlock.js +48 -0
  296. package/source/js/tools/imageViewer.js +194 -0
  297. package/source/js/tools/lightDarkSwitch.js +165 -0
  298. package/source/js/tools/localSearch.js +327 -0
  299. package/source/js/tools/runtime.js +28 -0
  300. package/source/js/tools/scrollTopBottom.js +34 -0
  301. package/source/js/tools/tocToggle.js +58 -0
  302. package/source/js/utils.js +383 -0
  303. package/source/webfonts/fa-brands-400.ttf +0 -0
  304. package/source/webfonts/fa-brands-400.woff2 +0 -0
  305. package/source/webfonts/fa-duotone-900.ttf +0 -0
  306. package/source/webfonts/fa-duotone-900.woff2 +0 -0
  307. package/source/webfonts/fa-light-300.ttf +0 -0
  308. package/source/webfonts/fa-light-300.woff2 +0 -0
  309. package/source/webfonts/fa-regular-400.ttf +0 -0
  310. package/source/webfonts/fa-regular-400.woff2 +0 -0
  311. package/source/webfonts/fa-sharp-solid-900.ttf +0 -0
  312. package/source/webfonts/fa-sharp-solid-900.woff2 +0 -0
  313. package/source/webfonts/fa-solid-900.ttf +0 -0
  314. package/source/webfonts/fa-solid-900.woff2 +0 -0
  315. package/source/webfonts/fa-thin-100.ttf +0 -0
  316. package/source/webfonts/fa-thin-100.woff2 +0 -0
  317. package/source/webfonts/fa-v4compatibility.ttf +0 -0
  318. package/source/webfonts/fa-v4compatibility.woff2 +0 -0
  319. package/vercel.json +7 -0
@@ -0,0 +1,1151 @@
1
+ :root
2
+ --waline-font-size 1rem
3
+ --waline-white #fff
4
+ --waline-light-grey #999
5
+ --waline-dark-grey #666
6
+ --waline-theme-color var(--primary-color)
7
+ --waline-active-color lighten($primary-color, 10%)
8
+ --waline-color #444
9
+ --waline-bgcolor var(--background-color)
10
+ --waline-bgcolor-light var(--second-background-color)
11
+ --waline-bgcolor-hover var(--second-background-color)
12
+ --waline-border-color #ddd
13
+ --waline-disable-bgcolor #f8f8f8
14
+ --waline-disable-color #000
15
+ --waline-code-bgcolor #282c34
16
+ --waline-bq-color var(--background-color)
17
+ --waline-avatar-size 3.25rem
18
+ --waline-m-avatar-size calc((var(--waline-avatar-size) * 9 / 13))
19
+ --waline-badge-color #3498db
20
+ --waline-badge-font-size 0.75em
21
+ --waline-info-bgcolor #f8f8f8
22
+ --waline-info-color #999
23
+ --waline-info-font-size 0.625em
24
+ --waline-border none
25
+ --waline-avatar-radius 28%
26
+ // --redefine-box-shadow var(--redefine-box-shadow-flat) !important
27
+
28
+ [data-waline]
29
+ font-size var(--waline-font-size)
30
+ text-align start
31
+
32
+ [dir=rtl] [data-waline]
33
+ direction rtl
34
+
35
+ [data-waline] *
36
+ box-sizing content-box
37
+ line-height 1.75
38
+
39
+ [data-waline] p
40
+ color var(--waline-color)
41
+
42
+ [data-waline] a
43
+ position relative
44
+ display inline-block
45
+ color var(--waline-theme-color)
46
+ text-decoration none
47
+ word-break break-word
48
+ cursor pointer
49
+
50
+ [data-waline] a:hover
51
+ color var(--waline-active-color)
52
+
53
+ [data-waline] img
54
+ max-width 100%
55
+ max-height 400px
56
+ border none
57
+
58
+ [data-waline] hr
59
+ margin 0.825em 0
60
+ border-style dashed
61
+ border-color var(--second-background-color)
62
+
63
+ [data-waline] code, [data-waline] pre
64
+ margin 0
65
+ padding 0.2em 0.4em
66
+ border-radius 3px
67
+ background var(--second-background-color)
68
+ font-size 85%
69
+
70
+ [data-waline] pre
71
+ overflow auto
72
+ padding 10px
73
+ line-height 1.45
74
+
75
+ [data-waline] pre::-webkit-scrollbar
76
+ width 6px
77
+ height 6px
78
+
79
+ [data-waline] pre::-webkit-scrollbar-track-piece:horizontal
80
+ -webkit-border-radius 6px
81
+ border-radius 6px
82
+ background rgba(0, 0, 0, 0.1)
83
+
84
+ [data-waline] pre::-webkit-scrollbar-thumb:horizontal
85
+ width 6px
86
+ -webkit-border-radius 6px
87
+ border-radius 6px
88
+ background var(--waline-theme-color)
89
+
90
+ [data-waline] pre code
91
+ padding 0
92
+ background rgba(0, 0, 0, 0)
93
+ color var(--waline-color)
94
+ white-space pre-wrap
95
+ word-break keep-all
96
+
97
+ [data-waline] blockquote
98
+ margin 0.5em 0
99
+ padding 0.5em 0 0.5em 1em
100
+ border-inline-start 8px solid var(--waline-bq-color)
101
+ color var(--waline-dark-grey)
102
+
103
+ [data-waline] blockquote>p
104
+ margin 0
105
+
106
+ [data-waline] ol, [data-waline] ul
107
+ margin-inline-start 1.25em
108
+ padding 0
109
+
110
+ [data-waline] input[type=checkbox], [data-waline] input[type=radio]
111
+ display inline-block
112
+ vertical-align middle
113
+ margin-top -2px
114
+
115
+ .wl-btn
116
+ display inline-block
117
+ vertical-align middle
118
+ min-width 2.5em
119
+ margin-bottom 0
120
+ padding 0.5em 1em
121
+ border 1px solid var(--waline-border-color)
122
+ border-radius 0.5em
123
+ background rgba(0, 0, 0, 0)
124
+ color var(--waline-color)
125
+ font-weight 400
126
+ font-size 0.75em
127
+ line-height 1.5
128
+ text-align center
129
+ white-space nowrap
130
+ cursor pointer
131
+ user-select none
132
+ transition-duration 0.4s
133
+ touch-action manipulation
134
+
135
+ .wl-btn:hover, .wl-btn:active
136
+ border-color var(--waline-theme-color)
137
+ color var(--waline-theme-color)
138
+
139
+ .wl-btn:disabled
140
+ border-color var(--waline-border-color)
141
+ background var(--waline-disable-bgcolor)
142
+ color var(--waline-disable-color)
143
+ cursor not-allowed
144
+
145
+ .wl-btn.primary
146
+ border-color var(--waline-theme-color)
147
+ background var(--waline-theme-color)
148
+ color var(--waline-white)
149
+
150
+ .wl-btn.primary:hover, .wl-btn.primary:active
151
+ border-color var(--waline-active-color)
152
+ background var(--waline-active-color)
153
+ color var(--waline-white)
154
+
155
+ .wl-btn.primary:disabled
156
+ border-color var(--waline-border-color)
157
+ background var(--waline-disable-bgcolor)
158
+ color var(--waline-disable-color)
159
+ cursor not-allowed
160
+
161
+ .wl-loading
162
+ text-align center
163
+
164
+ .wl-loading svg
165
+ margin 0 auto
166
+
167
+ .wl-comment
168
+ position relative
169
+ display flex
170
+ margin-bottom 0.75em
171
+
172
+ .wl-close
173
+ position absolute
174
+ top -4px
175
+ inset-inline-end -4px
176
+ padding 0
177
+ border none
178
+ background rgba(0, 0, 0, 0)
179
+ line-height 1
180
+ cursor pointer
181
+
182
+ .wl-login-info
183
+ max-width 80px
184
+ margin-top 0.75em
185
+ text-align center
186
+
187
+ .wl-logout-btn
188
+ position absolute
189
+ top -10px
190
+ inset-inline-end -10px
191
+ padding 3px
192
+ border none
193
+ background rgba(0, 0, 0, 0)
194
+ line-height 0
195
+ cursor pointer
196
+
197
+ .wl-avatar
198
+ position relative
199
+ width var(--waline-avatar-size)
200
+ height var(--waline-avatar-size)
201
+ margin 0 auto
202
+ border var(--waline-border)
203
+ border-radius var(--waline-avatar-radius)
204
+
205
+ @media (max-width 720px)
206
+ .wl-avatar
207
+ width var(--waline-m-avatar-size)
208
+ height var(--waline-m-avatar-size)
209
+
210
+ .wl-avatar img
211
+ width 100%
212
+ height 100%
213
+ border-radius var(--waline-avatar-radius)
214
+
215
+ .wl-login-nick
216
+ display block
217
+ color var(--waline-theme-color)
218
+ font-size 0.75em
219
+ word-break break-all
220
+
221
+ .wl-panel
222
+ position relative
223
+ flex-shrink 1
224
+ width 100%
225
+ margin 0.5em
226
+ border var(--waline-border)
227
+ border-radius 0.75em
228
+ background var(--background-color)
229
+ box-shadow var(--redefine-box-shadow-flat)
230
+
231
+ &:hover
232
+ box-shadow var(--redefine-box-shadow-flat-hover)
233
+
234
+ .wl-header
235
+ display flex
236
+ overflow hidden
237
+ padding 0 4px
238
+ border-bottom 2px dashed var(--waline-border-color)
239
+ border-top-left-radius 0.75em
240
+ border-top-right-radius 0.75em
241
+
242
+ @media (max-width 580px)
243
+ .wl-header
244
+ display block
245
+
246
+ .wl-header label
247
+ min-width 40px
248
+ padding 0.75em 0.5em
249
+ color var(--waline-color)
250
+ font-size 0.75em
251
+ text-align center
252
+
253
+ .wl-header input
254
+ flex 1
255
+ width 0
256
+ padding 0.5em
257
+ background rgba(0, 0, 0, 0)
258
+ font-size 0.625em
259
+ resize none
260
+
261
+ .wl-header-item
262
+ display flex
263
+ flex 1
264
+
265
+ @media (max-width 580px)
266
+ .wl-header-item:not(:last-child)
267
+ border-bottom 2px dashed var(--waline-border-color)
268
+
269
+ .wl-header-1 .wl-header-item
270
+ width 100%
271
+
272
+ .wl-header-2 .wl-header-item
273
+ width 50%
274
+
275
+ @media (max-width 580px)
276
+ .wl-header-2 .wl-header-item
277
+ flex 0
278
+ width 100%
279
+
280
+ .wl-header-3 .wl-header-item
281
+ width 33.33%
282
+
283
+ @media (max-width 580px)
284
+ .wl-header-3 .wl-header-item
285
+ width 100%
286
+
287
+ .wl-editor
288
+ position relative
289
+ width calc(100% - 1em)
290
+ min-height 8.75em
291
+ margin 0.75em 0.5em
292
+ border-radius 0.5em
293
+ background rgba(0, 0, 0, 0)
294
+ font-size 0.875em
295
+ resize vertical
296
+
297
+ .wl-editor, .wl-input
298
+ max-width 100%
299
+ border none
300
+ color var(--waline-color)
301
+ outline none
302
+ transition all 0.25s ease
303
+
304
+ .wl-editor:focus, .wl-input:focus
305
+ background var(--second-background-color)
306
+
307
+ .wl-preview
308
+ padding 0 0.5em 0.5em
309
+
310
+ .wl-preview h4
311
+ margin 0.25em
312
+ font-weight bold
313
+ font-size 0.9375em
314
+
315
+ .wl-preview .wl-content
316
+ min-height 1.25em
317
+ padding 0.25em
318
+ word-break break-word
319
+ hyphens auto
320
+
321
+ .wl-preview .wl-content>*:first-child
322
+ margin-top 0
323
+
324
+ .wl-preview .wl-content>*:last-child
325
+ margin-bottom 0
326
+
327
+ .wl-footer
328
+ position relative
329
+ display flex
330
+ flex-wrap wrap
331
+ margin 0.5em 0.75em
332
+
333
+ .wl-actions
334
+ display flex
335
+ flex 2
336
+ align-items center
337
+
338
+ .wl-action
339
+ display inline-flex
340
+ align-items center
341
+ justify-content center
342
+ width 1.5em
343
+ height 1.5em
344
+ margin 2px
345
+ padding 0
346
+ border none
347
+ background rgba(0, 0, 0, 0)
348
+ color var(--waline-color)
349
+ font-size 16px
350
+ cursor pointer
351
+
352
+ .wl-action:hover
353
+ color var(--waline-theme-color)
354
+
355
+ .wl-action.active
356
+ color var(--waline-active-color)
357
+
358
+ #wl-image-upload
359
+ display none
360
+
361
+ #wl-image-upload:focus+label
362
+ color var(--waline-color)
363
+
364
+ #wl-image-upload:focus-visible+label
365
+ outline -webkit-focus-ring-color auto 1px
366
+
367
+ .wl-info
368
+ display flex
369
+ flex 3
370
+ align-items center
371
+ justify-content flex-end
372
+
373
+ .wl-info .wl-text-number
374
+ color var(--waline-info-color)
375
+ font-size 0.75em
376
+
377
+ .wl-info .wl-text-number .illegal
378
+ color red
379
+
380
+ .wl-info button
381
+ margin-inline-start 0.75em
382
+
383
+ .wl-info button svg
384
+ display block
385
+ margin 0 auto
386
+ line-height 18px
387
+
388
+ .wl-emoji-popup
389
+ position absolute
390
+ top 100%
391
+ inset-inline-start 1.25em
392
+ z-index 10
393
+ max-width 526px
394
+ border var(--waline-border)
395
+ border-radius 6px
396
+ background var(--background-color)
397
+ box-shadow var(--redefine-box-shadow-flat)
398
+ opacity 0
399
+ visibility hidden
400
+ transition transform 0.2s ease-out, opacity 0.2s ease-out
401
+ transform scale(0.9, 0.9)
402
+ transform-origin 0 0
403
+
404
+ .wl-emoji-popup.display
405
+ opacity 1
406
+ visibility visible
407
+ transform none
408
+
409
+ .wl-emoji-popup button
410
+ display inline-block
411
+ vertical-align middle
412
+ width 2em
413
+ margin 0.125em
414
+ padding 0
415
+ border-width 0
416
+ background rgba(0, 0, 0, 0)
417
+ font-size inherit
418
+ line-height 2
419
+ text-align center
420
+ cursor pointer
421
+
422
+ .wl-emoji-popup button:hover
423
+ background var(--waline-bgcolor-hover)
424
+
425
+ .wl-emoji-popup .wl-emoji
426
+ display inline-block
427
+ vertical-align middle
428
+ max-width 1.5em
429
+ max-height 1.5em
430
+
431
+ .wl-emoji-popup .wl-tab-wrapper
432
+ overflow-y auto
433
+ max-height 145px
434
+ padding 0.5em
435
+
436
+ .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar
437
+ width 6px
438
+ height 6px
439
+
440
+ .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-track-piece:vertical
441
+ -webkit-border-radius 6px
442
+ border-radius 6px
443
+ background rgba(0, 0, 0, 0.1)
444
+
445
+ .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-thumb:vertical
446
+ width 6px
447
+ -webkit-border-radius 6px
448
+ border-radius 6px
449
+ background var(--waline-theme-color)
450
+
451
+ .wl-emoji-popup .wl-tabs
452
+ position relative
453
+ overflow-x auto
454
+ padding 0 6px
455
+ white-space nowrap
456
+
457
+ .wl-emoji-popup .wl-tabs::before
458
+ content ' '
459
+ position absolute
460
+ top 0
461
+ right 0
462
+ left 0
463
+ z-index 2
464
+ height 1px
465
+ background var(--waline-border-color)
466
+
467
+ .wl-emoji-popup .wl-tabs::-webkit-scrollbar
468
+ width 6px
469
+ height 6px
470
+
471
+ .wl-emoji-popup .wl-tabs::-webkit-scrollbar-track-piece:horizontal
472
+ -webkit-border-radius 6px
473
+ border-radius 6px
474
+ background rgba(0, 0, 0, 0.1)
475
+
476
+ .wl-emoji-popup .wl-tabs::-webkit-scrollbar-thumb:horizontal
477
+ height 6px
478
+ -webkit-border-radius 6px
479
+ border-radius 6px
480
+ background var(--waline-theme-color)
481
+
482
+ .wl-emoji-popup .wl-tab
483
+ position relative
484
+ margin 0
485
+ padding 0 0.5em
486
+
487
+ .wl-emoji-popup .wl-tab.active
488
+ z-index 3
489
+ border 1px solid var(--waline-border-color)
490
+ border-top-width 0
491
+ border-bottom-right-radius 6px
492
+ border-bottom-left-radius 6px
493
+ background var(--background-color)
494
+
495
+ .wl-gif-popup
496
+ position absolute
497
+ top 100%
498
+ inset-inline-start 1.25em
499
+ z-index 10
500
+ width calc(100% - 3em)
501
+ padding 0.75em 0.75em 0.25em
502
+ border var(--waline-border)
503
+ border-radius 6px
504
+ background var(--background-color)
505
+ box-shadow var(--redefine-box-shadow-flat)
506
+ opacity 0
507
+ visibility hidden
508
+ transition transform 0.2s ease-out, opacity 0.2s ease-out
509
+ transform scale(0.9, 0.9)
510
+ transform-origin 0 0
511
+
512
+ .wl-gif-popup.display
513
+ opacity 1
514
+ visibility visible
515
+ transform none
516
+
517
+ .wl-gif-popup input
518
+ box-sizing border-box
519
+ width 100%
520
+ margin-bottom 10px
521
+ padding 3px 5px
522
+ border var(--waline-border)
523
+
524
+ .wl-gif-popup img
525
+ display block
526
+ box-sizing border-box
527
+ width 100%
528
+ border-width 2px
529
+ border-style solid
530
+ border-color #fff
531
+ cursor pointer
532
+
533
+ .wl-gif-popup img:hover
534
+ border-color var(--waline-theme-color)
535
+ border-radius 2px
536
+
537
+ .wl-gallery
538
+ display flex
539
+ overflow-y auto
540
+ max-height 80vh
541
+
542
+ .wl-gallery-column
543
+ display flex
544
+ flex 1
545
+ flex-direction column
546
+ height -webkit-max-content
547
+ height -moz-max-content
548
+ height max-content
549
+
550
+ .wl-cards .wl-user
551
+ --avatar-size var(--waline-avatar-size)
552
+ position relative
553
+ margin-inline-end 0.75em
554
+
555
+ @media (max-width 720px)
556
+ .wl-cards .wl-user
557
+ --avatar-size var(--waline-m-avatar-size)
558
+
559
+ .wl-cards .wl-user img
560
+ width var(--avatar-size)
561
+ height var(--avatar-size)
562
+ border-radius var(--waline-avatar-radius)
563
+ box-shadow var(--redefine-box-shadow-flat)
564
+
565
+ .wl-cards .wl-user .verified-icon
566
+ position absolute
567
+ top calc((var(--avatar-size) * 3 / 4))
568
+ inset-inline-start calc((var(--avatar-size) * 3 / 4))
569
+ border-radius 50%
570
+ background var(--background-color)
571
+ box-shadow var(--redefine-box-shadow-flat)
572
+
573
+ .wl-card-item
574
+ position relative
575
+ display flex
576
+ padding 0.5em
577
+
578
+ .wl-card-item .wl-card-item
579
+ padding-inline-end 0
580
+
581
+ .wl-card
582
+ flex 1
583
+ width 0
584
+ padding-bottom 0.5em
585
+ border-bottom 1px dashed var(--waline-border-color)
586
+
587
+ .wl-card:first-child
588
+ margin-inline-start 1em
589
+
590
+ .wl-card-item:last-child .wl-card
591
+ border-bottom none
592
+
593
+ .wl-card .wl-head
594
+ overflow hidden
595
+ line-height 1.5
596
+
597
+ .wl-card .wl-nick
598
+ position relative
599
+ display inline-block
600
+ margin-inline-end 0.5em
601
+ font-weight bold
602
+ font-size 0.875em
603
+ line-height 1
604
+ text-decoration none
605
+
606
+ .wl-card .wl-nick svg
607
+ position relative
608
+ bottom -0.125em
609
+ line-height 1
610
+
611
+ .wl-card span.wl-nick
612
+ color var(--waline-dark-grey)
613
+
614
+ .wl-card .wl-badge
615
+ display inline-block
616
+ margin-inline-end 1em
617
+ padding 0 0.3em
618
+ border 1px solid var(--waline-badge-color)
619
+ border-radius 4px
620
+ color var(--waline-badge-color)
621
+ font-size var(--waline-badge-font-size)
622
+
623
+ .wl-card .wl-time
624
+ margin-inline-end 0.875em
625
+ color var(--waline-info-color)
626
+ font-size 0.75em
627
+
628
+ .wl-card .wl-meta
629
+ display flex
630
+ flex-direction row
631
+ position relative
632
+ line-height 1
633
+
634
+ .wl-card .wl-meta>span
635
+ display flex
636
+ align-items center
637
+ flex-direction row
638
+ margin-inline-end 0.25em
639
+ padding 2px 4px
640
+ border-radius 0.2em
641
+ background var(--second-background-color)
642
+ color var(--waline-info-color)
643
+ font-size var(--waline-info-font-size)
644
+ line-height 1.5
645
+
646
+ .wl-card .wl-meta>span:empty
647
+ display none
648
+
649
+ .wl-card .wl-comment-actions
650
+ float right
651
+ line-height 1
652
+
653
+ [dir=rtl] .wl-card .wl-comment-actions
654
+ float left
655
+
656
+ .wl-card .wl-delete, .wl-card .wl-like, .wl-card .wl-reply, .wl-card .wl-edit
657
+ display inline-flex
658
+ align-items center
659
+ border none
660
+ background rgba(0, 0, 0, 0)
661
+ color var(--waline-color)
662
+ line-height 1
663
+ cursor pointer
664
+ transition color 0.2s ease
665
+
666
+ .wl-card .wl-delete:hover, .wl-card .wl-like:hover, .wl-card .wl-reply:hover, .wl-card .wl-edit:hover
667
+ color var(--waline-theme-color)
668
+
669
+ .wl-card .wl-delete.active, .wl-card .wl-like.active, .wl-card .wl-reply.active, .wl-card .wl-edit.active
670
+ color var(--waline-active-color)
671
+
672
+ .wl-card .wl-content
673
+ position relative
674
+ margin-bottom 0.75em
675
+ padding-top 0.625em
676
+ font-size 0.875em
677
+ line-height 2
678
+ word-wrap break-word
679
+
680
+ .wl-card .wl-content.expand
681
+ overflow hidden
682
+ max-height 8em
683
+ cursor pointer
684
+
685
+ .wl-card .wl-content.expand::before
686
+ content ''
687
+ position absolute
688
+ top 0
689
+ bottom 3.15em
690
+ inset-inline-start 0
691
+ z-index 999
692
+ display block
693
+ width 100%
694
+ background linear-gradient(180deg, #000, rgba(255, 255, 255, 0.9))
695
+
696
+ .wl-card .wl-content.expand::after
697
+ content attr(data-expand)
698
+ position absolute
699
+ bottom 0
700
+ inset-inline-start 0
701
+ z-index 999
702
+ display block
703
+ width 100%
704
+ height 3.15em
705
+ background rgba(255, 255, 255, 0.9)
706
+ color #828586
707
+ line-height 3.15em
708
+ text-align center
709
+
710
+ .wl-card .wl-content>*:first-child
711
+ margin-top 0
712
+
713
+ .wl-card .wl-content>*:last-child
714
+ margin-bottom 0
715
+
716
+ .wl-card .wl-admin-actions
717
+ margin 8px 0
718
+ font-size 12px
719
+ text-align right
720
+
721
+ .wl-card .wl-comment-status
722
+ margin 0 8px
723
+
724
+ .wl-card .wl-comment-status .wl-btn
725
+ border-radius 0
726
+
727
+ .wl-card .wl-comment-status .wl-btn:first-child
728
+ border-inline-end 0
729
+ border-radius 0.5em 0 0 0.5em
730
+
731
+ .wl-card .wl-comment-status .wl-btn:last-child
732
+ border-inline-start 0
733
+ border-radius 0 0.5em 0.5em 0
734
+
735
+ .wl-card .wl-quote
736
+ border-inline-start 1px dashed rgba(237, 237, 237, 0.5)
737
+
738
+ .wl-card .wl-quote .wl-user
739
+ --avatar-size var(--waline-m-avatar-size)
740
+
741
+ .wl-close-icon
742
+ color var(--waline-border-color)
743
+
744
+ .wl-content .vemoji, .wl-content .wl-emoji
745
+ display inline-block
746
+ vertical-align baseline
747
+ height 1.25em
748
+ margin -0.125em 0.25em
749
+
750
+ .wl-content .wl-tex
751
+ background var(--waline-info-bgcolor)
752
+ color var(--waline-info-color)
753
+
754
+ .wl-content span.wl-tex
755
+ display inline-block
756
+ margin-inline-end 0.25em
757
+ padding 2px 4px
758
+ border-radius 0.2em
759
+ font-size var(--waline-info-font-size)
760
+ line-height 1.5
761
+
762
+ .wl-content p.wl-tex
763
+ text-align center
764
+
765
+ .wl-content .katex-display
766
+ overflow auto hidden
767
+ -webkit-overflow-scrolling touch
768
+ padding-top 0.2em
769
+ padding-bottom 0.2em
770
+
771
+ .wl-content .katex-display::-webkit-scrollbar
772
+ height 3px
773
+
774
+ .wl-content .katex-error
775
+ color red
776
+
777
+ .wl-count
778
+ flex 1
779
+ font-weight bold
780
+ font-size 1.25em
781
+
782
+ .wl-empty
783
+ overflow auto
784
+ padding 1.25em
785
+ color var(--waline-color)
786
+ text-align center
787
+
788
+ .wl-operation
789
+ text-align center
790
+
791
+ .wl-operation button
792
+ margin 1em 0
793
+
794
+ .wl-power
795
+ padding 0.5em 0
796
+ color var(--waline-light-grey)
797
+ font-size var(--waline-info-font-size)
798
+ text-align end
799
+
800
+ .wl-meta-head
801
+ display flex
802
+ flex-direction row
803
+ align-items center
804
+ padding 0.375em
805
+
806
+ .wl-sort
807
+ margin 0
808
+ list-style-type none
809
+
810
+ .wl-sort li
811
+ display inline-block
812
+ color var(--waline-info-color)
813
+ font-size 0.75em
814
+ cursor pointer
815
+
816
+ .wl-sort li.active
817
+ color var(--waline-theme-color)
818
+
819
+ .wl-sort li+li
820
+ margin-inline-start 1em
821
+
822
+ .wl-reaction
823
+ overflow auto hidden
824
+ margin-bottom 1.75em
825
+ text-align center
826
+
827
+ .wl-reaction img
828
+ width 100%
829
+ height 100%
830
+ transition all 250ms ease-in-out
831
+
832
+ .wl-reaction-title
833
+ margin 16px auto
834
+ font-weight bold
835
+ font-size 18px
836
+
837
+ .wl-reaction-list
838
+ display flex
839
+ flex-direction row
840
+ gap 16px
841
+ justify-content center
842
+ margin 0
843
+ padding 8px
844
+ list-style-type none
845
+
846
+ @media (max-width 580px)
847
+ .wl-reaction-list
848
+ gap 12px
849
+
850
+ [data-waline] .wl-reaction-list
851
+ margin-inline-start 0
852
+
853
+ .wl-reaction-item
854
+ display flex
855
+ flex-direction column
856
+ align-items center
857
+ cursor pointer
858
+
859
+ .wl-reaction-item:hover img, .wl-reaction-item.active img
860
+ transform scale(1.15)
861
+
862
+ .wl-reaction-img
863
+ position relative
864
+ width 42px
865
+ height 42px
866
+
867
+ @media (max-width 580px)
868
+ .wl-reaction-img
869
+ width 32px
870
+ height 32px
871
+
872
+ .wl-reaction-loading
873
+ position absolute
874
+ top -4px
875
+ inset-inline-end -5px
876
+ width 18px
877
+ height 18px
878
+ color var(--waline-theme-color)
879
+
880
+ .wl-reaction-votes
881
+ position absolute
882
+ top -9px
883
+ inset-inline-end -9px
884
+ min-width 1em
885
+ padding 2px
886
+ border 1px solid var(--waline-theme-color)
887
+ border-radius 1em
888
+ background var(--background-color)
889
+ color var(--waline-theme-color)
890
+ font-weight 700
891
+ font-size 0.75em
892
+ line-height 1
893
+
894
+ .wl-reaction-item.active .wl-reaction-votes
895
+ background var(--waline-theme-color)
896
+ color var(--background-color)
897
+
898
+ .wl-reaction-text
899
+ font-size 0.875em
900
+
901
+ .wl-reaction-item.active .wl-reaction-text
902
+ color var(--waline-theme-color)
903
+
904
+ .wl-content pre, .wl-content pre[class*=language-]
905
+ overflow auto
906
+ margin 0.75rem 0
907
+ padding 1rem 1.25rem
908
+ border-radius 6px
909
+ background var(--waline-code-bgcolor)
910
+ line-height 1.4
911
+
912
+ .wl-content pre code, .wl-content pre[class*=language-] code
913
+ padding 0
914
+ border-radius 0
915
+ background rgba(0, 0, 0, 0) !important
916
+ color #bbb
917
+ direction ltr
918
+
919
+ .wl-content code[class*=language-], .wl-content pre[class*=language-]
920
+ background none
921
+ color #ccc
922
+ font-size 1em
923
+ font-family Consolas, Monaco, 'Andale Mono', 'Geist Mono', monospace
924
+ text-align left
925
+ white-space pre
926
+ word-spacing normal
927
+ word-wrap normal
928
+ word-break normal
929
+ tab-size 4
930
+ hyphens none
931
+
932
+ .wl-content pre[class*=language-]
933
+ overflow auto
934
+
935
+ .wl-content :not(pre)>code[class*=language-], .wl-content pre[class*=language-]
936
+ background #2d2d2d
937
+
938
+ .wl-content :not(pre)>code[class*=language-]
939
+ padding 0.1em
940
+ border-radius 0.3em
941
+ white-space normal
942
+
943
+ .wl-content .token.comment, .wl-content .token.block-comment, .wl-content .token.prolog, .wl-content .token.doctype, .wl-content .token.cdata
944
+ color #999
945
+
946
+ .wl-content .token.punctuation
947
+ color #ccc
948
+
949
+ .wl-content .token.tag, .wl-content .token.attr-name, .wl-content .token.namespace, .wl-content .token.deleted
950
+ color #e2777a
951
+
952
+ .wl-content .token.function-name
953
+ color #6196cc
954
+
955
+ .wl-content .token.boolean, .wl-content .token.number, .wl-content .token.function
956
+ color #f08d49
957
+
958
+ .wl-content .token.property, .wl-content .token.class-name, .wl-content .token.constant, .wl-content .token.symbol
959
+ color #f8c555
960
+
961
+ .wl-content .token.selector, .wl-content .token.important, .wl-content .token.atrule, .wl-content .token.keyword, .wl-content .token.builtin
962
+ color #cc99cd
963
+
964
+ .wl-content .token.string, .wl-content .token.char, .wl-content .token.attr-value, .wl-content .token.regex, .wl-content .token.variable
965
+ color #7ec699
966
+
967
+ .wl-content .token.operator, .wl-content .token.entity, .wl-content .token.url
968
+ color #67cdcc
969
+
970
+ .wl-content .token.important, .wl-content .token.bold
971
+ font-weight bold
972
+
973
+ .wl-content .token.italic
974
+ font-style italic
975
+
976
+ .wl-content .token.entity
977
+ cursor help
978
+
979
+ .wl-content .token.inserted
980
+ color green
981
+
982
+ .wl-recent-item p
983
+ display inline
984
+
985
+ .wl-user-list
986
+ padding 0
987
+ list-style none
988
+
989
+ .wl-user-list a, .wl-user-list a:hover, .wl-user-list a:visited
990
+ color var(--waline-color)
991
+ text-decoration none
992
+
993
+ .wl-user-list .wl-user-avatar
994
+ position relative
995
+ display inline-block
996
+ overflow hidden
997
+ margin-inline-end 10px
998
+ border-radius 4px
999
+ line-height 0
1000
+
1001
+ .wl-user-list .wl-user-avatar>img
1002
+ width var(--waline-user-avatar-size, 48px)
1003
+ height var(--waline-user-avatar-size, 48px)
1004
+
1005
+ .wl-user-list .wl-user-badge
1006
+ position absolute
1007
+ bottom 0
1008
+ inset-inline-end 0
1009
+ min-width 0.7em
1010
+ height 1.5em
1011
+ padding 0 0.4em
1012
+ border-radius 4px
1013
+ background var(--waline-info-bgcolor)
1014
+ color var(--waline-info-color)
1015
+ font-weight bold
1016
+ font-size 10px
1017
+ line-height 1.5em
1018
+ text-align center
1019
+
1020
+ .wl-user-list .wl-user-item
1021
+ margin 10px 0
1022
+
1023
+ .wl-user-list .wl-user-item:nth-child(1) .wl-user-badge
1024
+ background var(--waline-rank-gold-bgcolor, #fa3939)
1025
+ color var(--waline-white)
1026
+ font-weight bold
1027
+
1028
+ .wl-user-list .wl-user-item:nth-child(2) .wl-user-badge
1029
+ background var(--waline-rank-silver-bgcolor, #fb811c)
1030
+ color var(--waline-white)
1031
+ font-weight bold
1032
+
1033
+ .wl-user-list .wl-user-item:nth-child(3) .wl-user-badge
1034
+ background var(--waline-rank-copper-bgcolor, #feb207)
1035
+ color var(--waline-white)
1036
+
1037
+ .wl-user-list .wl-user-meta
1038
+ display inline-block
1039
+ vertical-align top
1040
+
1041
+ .wl-user-list .wl-badge
1042
+ display inline-block
1043
+ vertical-align text-top
1044
+ margin-inline-start 0.5em
1045
+ padding 0 0.3em
1046
+ border 1px solid var(--waline-badge-color)
1047
+ border-radius 4px
1048
+ color var(--waline-badge-color)
1049
+ font-size var(--waline-badge-font-size)
1050
+
1051
+ .wl-user-wall
1052
+ padding 0
1053
+ list-style none
1054
+
1055
+ .wl-user-wall .wl-user-badge, .wl-user-wall .wl-user-meta
1056
+ display none
1057
+
1058
+ .wl-user-wall .wl-user-item
1059
+ position relative
1060
+ display inline-block
1061
+ transition transform ease-in-out 0.2s
1062
+
1063
+ .wl-user-wall .wl-user-item::before, .wl-user-wall .wl-user-item::after
1064
+ position absolute
1065
+ bottom 100%
1066
+ left 50%
1067
+ z-index 10
1068
+ opacity 0
1069
+ pointer-events none
1070
+ transition all 0.18s ease-out 0.18s
1071
+ transform translate(-50%, 4px)
1072
+ transform-origin top
1073
+
1074
+ .wl-user-wall .wl-user-item::before
1075
+ content ''
1076
+ width 0
1077
+ height 0
1078
+ border 5px solid rgba(0, 0, 0, 0)
1079
+ border-top-color rgba(16, 16, 16, 0.95)
1080
+
1081
+ .wl-user-wall .wl-user-item::after
1082
+ content attr(aria-label)
1083
+ margin-bottom 10px
1084
+ padding 0.5em 1em
1085
+ border-radius 2px
1086
+ background rgba(16, 16, 16, 0.95)
1087
+ color #fff
1088
+ font-size 12px
1089
+ white-space nowrap
1090
+
1091
+ .wl-user-wall .wl-user-item:hover
1092
+ transform scale(1.1)
1093
+
1094
+ .wl-user-wall .wl-user-item:hover::before, .wl-user-wall .wl-user-item:hover::after
1095
+ opacity 1
1096
+ pointer-events none
1097
+ transform translate(-50%, 0)
1098
+
1099
+ .wl-user-wall .wl-user-item img
1100
+ width var(--waline-user-avatar-size, 48px)
1101
+ height var(--waline-user-avatar-size, 48px)
1102
+
1103
+
1104
+ /* # sourceMappingURL=waline.css.map */
1105
+ /* Waline meta */
1106
+ .wl-meta > span::before
1107
+ content ''
1108
+ display inline-block
1109
+ width 1em
1110
+ height 1em
1111
+ margin-right 2px
1112
+ background-position center center
1113
+ background-repeat no-repeat
1114
+
1115
+ .wl-meta > .wl-addr::before
1116
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999'%3E%3Cpath d='M444.52 3.52 28.74 195.42c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 51.17 70.36 67.17 92.75 19.19l191.9-415.78c15.99-38.39-25.59-79.97-63.97-63.97z'/%3E%3C/svg%3E")
1117
+
1118
+ .wl-meta > .wl-os::before, .wl-meta > .wl-browser::before
1119
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999'%3E%3Cpath d='M464 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm0 394c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V192h416v234z'/%3E%3C/svg%3E")
1120
+
1121
+ .wl-meta > .wl-os[data-value^='windows'i]::before
1122
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23999'%3E%3Cpath d='m0 93.7 183.6-25.3v177.4H0V93.7zm0 324.6 183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z'/%3E%3C/svg%3E")
1123
+
1124
+ .wl-meta > .wl-os[data-value^='mac'i]::before, .wl-meta > .wl-os[data-value^='ios'i]::before, .wl-meta > .wl-os[data-value^='iphone'i]::before, .wl-meta > .wl-os[data-value^='ipad'i]::before
1125
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='%23999'%3E%3Cpath d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E")
1126
+
1127
+ .wl-meta > .wl-os[data-value^='linux'i]::before
1128
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23999'%3E%3Cpath d='M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z'/%3E%3C/svg%3E")
1129
+
1130
+ .wl-meta > .wl-os[data-value^='ubuntu'i]::before
1131
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512' fill='%23999'%3E%3Cpath d='M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1.7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z'/%3E%3C/svg%3E")
1132
+
1133
+ .wl-meta > .wl-os[data-value^='android'i]::before
1134
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' fill='%23999'%3E%3Cpath d='M420.55 301.93a24 24 0 1 1 24-24 24 24 0 0 1-24 24m-265.1 0a24 24 0 1 1 24-24 24 24 0 0 1-24 24m273.7-144.48 47.94-83a10 10 0 1 0-17.27-10l-48.54 84.07a301.25 301.25 0 0 0-246.56 0l-48.54-84.07a10 10 0 1 0-17.27 10l47.94 83C64.53 202.22 8.24 285.55 0 384h576c-8.24-98.45-64.54-181.78-146.85-226.55'/%3E%3C/svg%3E")
1135
+
1136
+ .wl-meta > .wl-browser[data-value^='chrome'i]::before
1137
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512' fill='%23999'%3E%3Cpath d='M131.5 217.5 55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6 40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z'/%3E%3C/svg%3E")
1138
+
1139
+ .wl-meta > .wl-browser[data-value^='edge'i]::before
1140
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999'%3E%3Cpath d='M481.92 134.48C440.87 54.18 352.26 8 255.91 8 137.05 8 37.51 91.68 13.47 203.66c26-46.49 86.22-79.14 149.46-79.14 79.27 0 121.09 48.93 122.25 50.18 22 23.8 33 50.39 33 83.1 0 10.4-5.31 25.82-15.11 38.57-1.57 2-6.39 4.84-6.39 11 0 5.06 3.29 9.92 9.14 14 27.86 19.37 80.37 16.81 80.51 16.81A115.39 115.39 0 0 0 444.94 322a118.92 118.92 0 0 0 58.95-102.44c.5-43.43-15.5-72.3-21.97-85.08ZM212.77 475.67a154.88 154.88 0 0 1-46.64-45c-32.94-47.42-34.24-95.6-20.1-136A155.5 155.5 0 0 1 203 215.75c59-45.2 94.84-5.65 99.06-1a80 80 0 0 0-4.89-10.14c-9.24-15.93-24-36.41-56.56-53.51-33.72-17.69-70.59-18.59-77.64-18.59-38.71 0-77.9 13-107.53 35.69C35.68 183.3 12.77 208.72 8.6 243c-1.08 12.31-2.75 62.8 23 118.27a248 248 0 0 0 248.3 141.61c-38.12-6.62-65.85-26.64-67.13-27.21Zm250.72-98.33a7.76 7.76 0 0 0-7.92-.23 181.66 181.66 0 0 1-20.41 9.12 197.54 197.54 0 0 1-69.55 12.52c-91.67 0-171.52-63.06-171.52-144a61.12 61.12 0 0 1 6.52-26.75 168.72 168.72 0 0 0-38.76 50c-14.92 29.37-33 88.13 13.33 151.66 6.51 8.91 23 30 56 47.67 23.57 12.65 49 19.61 71.7 19.61 35.14 0 115.43-33.44 163-108.87a7.75 7.75 0 0 0-2.39-10.73Z'/%3E%3C/svg%3E")
1141
+
1142
+ .wl-meta > .wl-browser[data-value^='firefox'i]::before
1143
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999'%3E%3Cpath d='M189.37 152.86Zm-58.74-29.37c.16.01.08.01 0 0Zm351.42 45.35c-10.61-25.5-32.08-53-48.94-61.73 13.72 26.89 21.67 53.88 24.7 74 0 0 0 .14.05.41-27.58-68.75-74.35-96.47-112.55-156.83-1.93-3.05-3.86-6.11-5.74-9.33-1-1.65-1.86-3.34-2.69-5.05a44.88 44.88 0 0 1-3.64-9.62.63.63 0 0 0-.55-.66.9.9 0 0 0-.46 0l-.12.07-.18.1.1-.14c-54.23 31.77-76.72 87.38-82.5 122.78a130 130 0 0 0-48.33 12.33 6.25 6.25 0 0 0-3.09 7.75 6.13 6.13 0 0 0 7.79 3.79l.52-.21a117.84 117.84 0 0 1 42.11-11l1.42-.1c2-.12 4-.2 6-.22A122.61 122.61 0 0 1 291 140c.67.2 1.32.42 2 .63 1.89.57 3.76 1.2 5.62 1.87 1.36.5 2.71 1 4.05 1.58 1.09.44 2.18.88 3.25 1.35q2.52 1.13 5 2.35c.75.37 1.5.74 2.25 1.13q2.4 1.26 4.74 2.63 1.51.87 3 1.8a124.89 124.89 0 0 1 42.66 44.13c-13-9.15-36.35-18.19-58.82-14.28 87.74 43.86 64.18 194.9-57.39 189.2a108.43 108.43 0 0 1-31.74-6.12 139.5 139.5 0 0 1-7.16-2.93c-1.38-.63-2.76-1.27-4.12-2-29.84-15.34-54.44-44.42-57.51-79.75 0 0 11.25-41.95 80.62-41.95 7.5 0 28.93-20.92 29.33-27-.09-2-42.54-18.87-59.09-35.18-8.85-8.71-13.05-12.91-16.77-16.06a69.58 69.58 0 0 0-6.31-4.77 113.05 113.05 0 0 1-.69-59.63c-25.06 11.41-44.55 29.45-58.71 45.37h-.12c-9.67-12.25-9-52.65-8.43-61.08-.12-.53-7.22 3.68-8.15 4.31a178.54 178.54 0 0 0-23.84 20.43 214 214 0 0 0-22.77 27.33 205.84 205.84 0 0 0-32.73 73.9c-.06.27-2.33 10.21-4 22.48q-.42 2.87-.78 5.74c-.57 3.69-1 7.71-1.44 14 0 .24 0 .48-.05.72-.18 2.71-.34 5.41-.49 8.12v1.24c0 134.7 109.21 243.89 243.92 243.89 120.64 0 220.82-87.58 240.43-202.62.41-3.12.74-6.26 1.11-9.41 4.85-41.83-.54-85.79-15.82-122.55Z'/%3E%3C/svg%3E")
1144
+
1145
+ .wl-meta > .wl-browser[data-value^='safari'i]::before
1146
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999'%3E%3Cpath d='m274.69 274.69-37.38-37.38L166 346ZM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8Zm155.85 174.79 14.78-6.13a8 8 0 0 1 10.45 4.34 8 8 0 0 1-4.33 10.46L418 197.57a8 8 0 0 1-10.45-4.33 8 8 0 0 1 4.3-10.45ZM314.43 94l6.12-14.78a8 8 0 0 1 10.45-4.3 8 8 0 0 1 4.33 10.45l-6.13 14.78a8 8 0 0 1-10.45 4.33A8 8 0 0 1 314.43 94ZM256 60a8 8 0 0 1 8 8v16a8 8 0 0 1-8 8 8 8 0 0 1-8-8V68a8 8 0 0 1 8-8Zm-75 14.92a8 8 0 0 1 10.46 4.33L197.57 94a8 8 0 1 1-14.78 6.12l-6.13-14.78A8 8 0 0 1 181 74.92Zm-63.58 42.49a8 8 0 0 1 11.31 0L140 128.72a8 8 0 0 1 0 11.28 8 8 0 0 1-11.31 0l-11.31-11.31a8 8 0 0 1 .03-11.28ZM60 256a8 8 0 0 1 8-8h16a8 8 0 0 1 8 8 8 8 0 0 1-8 8H68a8 8 0 0 1-8-8Zm40.15 73.21-14.78 6.13A8 8 0 0 1 74.92 331a8 8 0 0 1 4.33-10.46L94 314.43a8 8 0 0 1 10.45 4.33 8 8 0 0 1-4.3 10.45Zm4.33-136A8 8 0 0 1 94 197.57l-14.78-6.12a8 8 0 0 1-4.3-10.45 8 8 0 0 1 10.45-4.33l14.78 6.13a8 8 0 0 1 4.33 10.44ZM197.57 418l-6.12 14.78a8 8 0 0 1-14.79-6.12l6.13-14.78a8 8 0 1 1 14.78 6.12ZM264 444a8 8 0 0 1-8 8 8 8 0 0 1-8-8v-16a8 8 0 0 1 8-8 8 8 0 0 1 8 8Zm67-6.92a8 8 0 0 1-10.46-4.33L314.43 418a8 8 0 0 1 4.33-10.45 8 8 0 0 1 10.45 4.33l6.13 14.78a8 8 0 0 1-4.34 10.42Zm63.58-42.49a8 8 0 0 1-11.31 0L372 383.28a8 8 0 0 1 0-11.28 8 8 0 0 1 11.31 0l11.31 11.31a8 8 0 0 1-.03 11.28ZM286.25 286.25 110.34 401.66l115.41-175.91 175.91-115.41ZM437.08 331a8 8 0 0 1-10.45 4.33l-14.78-6.13a8 8 0 0 1-4.33-10.45 8 8 0 0 1 10.48-4.32l14.78 6.12a8 8 0 0 1 4.3 10.45Zm6.92-67h-16a8 8 0 0 1-8-8 8 8 0 0 1 8-8h16a8 8 0 0 1 8 8 8 8 0 0 1-8 8Z'/%3E%3C/svg%3E")
1147
+
1148
+ .wl-meta > .wl-browser[data-value^='ie'i]::before, .wl-meta > .wl-browser[data-value^='explorer'i]::before
1149
+ background-image url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999'%3E%3Cpath d='M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z'/%3E%3C/svg%3E")
1150
+
1151
+ /* # sourceMappingURL=waline-meta.css.map */