前言
前几天,在给AG bot
(作者的机器人)写原神功能的截图网页,因为作者不会css,所以开着教程网页,一边请教别人一边写网页。
直到昨天,我终于写完了,虽然不是特别好看。但好歹是自己写的,写完之后,感觉我这个小白也要变成小黑了。
今天刚好看见twikoo丑丑的,就想给他来个Butterfly风格的魔改(美化)
没想到不仅成功了还挺好看
部分配色和代码,抄自heo的博客
样式只支持Hexo-Butterfly主题
CSS代码
只需要添加到外挂css里
魔改玩家都清楚咋添加外挂css的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
| :root { --cxl2020mc-radius: 7px; --cxl2020mc-card-border-width: 1px; }
[data-theme=light] { --cxl2020mc-border-color: #e3e8f7; --cxl2020mc-card-bg: #fff; --cxl2020mc-card-border: #e3e8f7; --style-border-always: 1px solid var(--cxl2020mc-card-border); --cxl2020mc-blue: #425AEF; }
[data-theme=dark] { --cxl2020mc-border-color: #42444a; --cxl2020mc-card-bg: #1d1b26; --cxl2020mc-card-border: #42444a; --style-border-always: 1px solid var(--cxl2020mc-card-border); --cxl2020mc-blue: #0084FF; }
.twikoo .tk-comments-container>.tk-comment { padding: 1rem; border-radius: var(--cxl2020mc-radius); background: var(--cxl2020mc-card-bg); transition: .3s; }
[data-theme=light] .twikoo .tk-comments-container>.tk-comment { box-shadow: var(--card-box-shadow); }
[data-theme=light] .twikoo .tk-comments-container>.tk-comment:hover { box-shadow: var(--card-hover-box-shadow); }
[data-theme=dark] .twikoo .tk-comments-container>.tk-comment { border-style: solid; border-width: var(--cxl2020mc-card-border-width); border-color: var(--cxl2020mc-card-border); }
.twikoo .tk-extra { border-radius: var(--cxl2020mc-radius); background: var(--cxl2020mc-card-bg); padding: 0.4rem; margin-bottom: 1rem; transition: .3s; }
[data-theme=light] .twikoo .tk-extra { box-shadow: var(--card-box-shadow); }
[data-theme=light] .twikoo .tk-extra:hover { box-shadow: var(--card-hover-box-shadow); }
[data-theme=dark] .twikoo .tk-extra { border-style: solid; border-width: var(--cxl2020mc-card-border-width); border-color: var(--cxl2020mc-card-border); }
.twikoo .tk-expand { border-radius: var(--cxl2020mc-radius); }
[data-theme=light] .twikoo .tk-expand { box-shadow: var(--card-box-shadow); }
[data-theme=light] .twikoo .tk-expand:hover { box-shadow: var(--card-hover-box-shadow); background-color: var(--btn-bg); }
[data-theme=dark] .twikoo .tk-expand:hover { background-color: var(--cxl2020mc-blue); }
[data-theme=dark] .twikoo .tk-expand { border-style: solid; border-width: var(--cxl2020mc-card-border-width); border-color: var(--cxl2020mc-card-border); }
|