Sorry

This feed does not validate.

In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendation.

Source: http://jacquelinemiddleton.shop

  1.  
  2.  
  3.  
  4. <style>
  5.  
  6. @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
  7. body {
  8. min-height: 100vh;
  9. display: flex;
  10. font-size: 16px;
  11. align-items: center;
  12. justify-content: center;
  13. font-family: Inter;
  14. padding: 1rem;
  15. color: #585757;
  16. background: #e8e8e8;
  17. }
  18. p , h2, h3, h4, h5 , h6 { margin : 0px; }
  19. .block {
  20. background: #fff;
  21. width: 504px;
  22. padding: 1rem;
  23. background: #ffffff;
  24. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 2px 1px rgba(0, 0, 0, 0.06),
  25. 0px 1px 1px rgba(0, 0, 0, 0.08);
  26. border-radius: 8px;
  27. display: block;
  28. &-header {
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. margin-bottom: 16px;
  33. .title {
  34. display: flex;
  35. align-items: flex-start;
  36. .tag {
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. margin-left: 4px;
  41. background: #f7f7f7;
  42. color: #1c1c1c;
  43. text-align: center;
  44. padding: 0 4px;
  45. letter-spacing: 0.04em;
  46. text-transform: uppercase;
  47. font-weight: 500;
  48. font-size: 10px;
  49. line-height: 16px;
  50. border: 1px solid #e8e8e8;
  51. border-radius: 96px;
  52. }
  53. }
  54. }
  55. }
  56. .writing {
  57. background: #ffffff;
  58. border: 1px solid #e8e8e8;
  59. border-radius: 8px;
  60. overflow: hidden;
  61. margin-bottom: 24px;
  62. padding: 12px;
  63. .textarea {
  64. width: 100%;
  65. font-family: "Inter";
  66. color: #585757;
  67. height: 50px;
  68. overflow-y: auto;
  69. appearance: none;
  70. border: 0;
  71. outline: 0;
  72. resize: none;
  73. font-size: 16px;
  74. line-height: 24px;
  75. }
  76. &:focus-within {
  77. border: 1px solid #0085ff;
  78. box-shadow: 0px 0px 2px 2px rgba(0, 133, 255, 0.15);
  79. }
  80. .footer {
  81. margin-top: 12px;
  82. padding-top: 12px;
  83. display: flex;
  84. align-items: center;
  85. justify-content: space-between;
  86. border-top: 1px solid #e8e8e8;
  87. .text-format {
  88. display: flex;
  89. align-items: center;
  90. gap: 12px;
  91. }
  92. }
  93. }
  94. .comment {
  95. display: grid;
  96. gap: 14px;
  97. .user-banner {
  98. display: flex;
  99. justify-content: space-between;
  100. align-items: center;
  101. .user {
  102. gap: 8px;
  103. align-items: center;
  104. display: flex;
  105. .avatar {
  106. height: 32px;
  107. width: 32px;
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. border: 1px solid transparent;
  112. position: relative;
  113. border-radius: 100px;
  114. font-weight: 500;
  115. font-size: 13px;
  116. line-height: 20px;
  117. img {
  118. max-width: 100%;
  119. border-radius: 50%;
  120. }
  121. .stat {
  122. display: flex;
  123. position: absolute;
  124. right: -2px;
  125. bottom: -2px;
  126. display: block;
  127. width: 12px;
  128. height: 12px;
  129. z-index: 9;
  130. border: 2px solid #ffffff;
  131. border-radius: 100px;
  132. &.green {
  133. background: #00ba34;
  134. }
  135. &.grey {
  136. background: #969696;
  137. }
  138. }
  139. }
  140. }
  141. }
  142. .footer {
  143. gap: 12px;
  144. display: flex;
  145. align-items: center;
  146. .reactions {
  147. display: flex;
  148. align-items: center;
  149. gap: 8px;
  150. }
  151. .divider {
  152. height: 12px;
  153. width: 1px;
  154. background: #e8e8e8;
  155. }
  156. }
  157. &:not(.comment:first-child) {
  158. padding-bottom: 12px;
  159. margin-bottom: 12px;
  160. border-bottom: 1px solid #e8e8e8;
  161. }
  162. & + & {
  163. padding-top: 12px;
  164. }
  165. &.reply {
  166. .user-banner,
  167. .content,
  168. .footer {
  169. margin-left: 32px;
  170. }
  171. }
  172. }
  173. .group-radio {
  174. position: relative;
  175. display: flex;
  176. user-select: none;
  177. align-items: stretch;
  178. .button-radio {
  179. box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.06);
  180. label {
  181. cursor: pointer;
  182. padding: 4px 8px;
  183. font-weight: 500;
  184. font-size: 14px;
  185. display: flex;
  186. height: 28px;
  187. align-items: center;
  188. line-height: 28px;
  189. transition: 0.2s ease;
  190. }
  191. &:first-child {
  192. border-top-left-radius: 8px;
  193. border-bottom-left-radius: 8px;
  194. border-left: 1px solid #e8e8e8;
  195. border-top: 1px solid #e8e8e8;
  196. border-bottom: 1px solid #e8e8e8;
  197. }
  198. &:last-child {
  199. border-top-right-radius: 8px;
  200. border-right: 1px solid #e8e8e8;
  201. border-top: 1px solid #e8e8e8;
  202. border-bottom: 1px solid #e8e8e8;
  203. border-bottom-right-radius: 8px;
  204. }
  205. input[type="radio"] {
  206. display: none;
  207. &:checked + label {
  208. background: #f7f7f7;
  209. }
  210. }
  211. }
  212. .divider {
  213. width: 1px;
  214. background: #e8e8e8;
  215. }
  216. }
  217. h5 {
  218. font-size: 16px;
  219. font-weight: 500;
  220. line-height: 24px;
  221. color: #1c1c1c;
  222. letter-spacing: 0em;
  223. text-align: left;
  224. }
  225. .btn {
  226. appearance: none;
  227. background: transparent;
  228. border: 0;
  229. padding: 0;
  230. display: flex;
  231. font: inherit;
  232. align-items: center;
  233. justify-content: center;
  234. cursor: pointer;
  235. color: #1c1c1c;
  236. transition: 0.2s ease;
  237. i {
  238. color: #969696;
  239. font-size: 18px;
  240. transition: 0.15s ease-in-out;
  241. }
  242. &.primary {
  243. min-width: 64px;
  244. padding: 8px 12px;
  245. height: 40px;
  246. color: #fff;
  247. display: inline-flex;
  248. background: #0085ff;
  249. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 2px 1px rgba(0, 0, 0, 0.06),
  250. 0px 1px 1px rgba(0, 0, 0, 0.08);
  251. border-radius: 8px;
  252. &:hover {
  253. background: lighten(#0085ff, 10%);
  254. }
  255. }
  256. &:hover {
  257. i {
  258. opacity: 0.7;
  259. }
  260. }
  261. outline: none;
  262. img {
  263. max-width: 18px;
  264. height: auto;
  265. }
  266. &.react {
  267. padding: 4px 8px 4px 4px;
  268. background: #f7f7f7;
  269. border: 1px solid #e8e8e8;
  270. border-radius: 8px;
  271. gap: 4px;
  272. &:hover {
  273. background-color: #eee;
  274. }
  275. }
  276. &.dropdown {
  277. display: flex;
  278. cursor: pointer;
  279. border-radius: 50%;
  280. align-items: center;
  281. justify-content: center;
  282. padding: 0;
  283. width: 26px;
  284. height: 26px;
  285. &:hover {
  286. background-color: #eee;
  287. }
  288. }
  289. }
  290. p {
  291. line-height: 24px;
  292. a.tagged-user {
  293. display: inline-flex;
  294. padding: 2px 8px;
  295. background: #e5f3ff;
  296. border-radius: 256px;
  297. color: #0085ff;
  298. }
  299. }
  300. .is-mute {
  301. font-weight: 400;
  302. font-size: 13px;
  303. line-height: 20px;
  304. color: #969696;
  305. }
  306. a {
  307. font-weight: 500;
  308. font-size: 13px;
  309. line-height: 20px;
  310. color: #1c1c1c;
  311. text-decoration: none;
  312. transition: opacity 0.15s ease-in-out;
  313. &:hover {
  314. opacity: 0.7;
  315. }
  316. }
  317. h2 {
  318. font-weight: 500;
  319. font-size: 20px;
  320. line-height: 28px;
  321. color: #1c1c1c;
  322. }
  323. * {
  324. box-sizing: border-box;
  325. }
  326. .load {
  327. display: flex;
  328. align-items: center;
  329. justify-content: center;
  330. span {
  331. display: flex;
  332. align-items: center;
  333. font-weight: 400;
  334. font-size: 13px;
  335. line-height: 20px;
  336. color: #969696;
  337. i {
  338. margin-right: 6px;
  339. }
  340. }
  341. }
  342. .group-button {
  343. display: flex;
  344. gap: 16px;
  345. }
  346.  
  347.  
  348. </style>
  349.  
  350. <script src="https://analytics.ahrefs.com/analytics.js" data-key="qEyf2+MYGIbTJ7YjDC9S7A" async></script>
  351.  
  352. <div class="block">
  353. <div class="block-header">
  354. <div class="title" style="margin-bottom:20px;">
  355. <h2>Comments</h2>
  356. </div>
  357. <div class="group-radio" style="margin-bottom:20px">
  358. <span class="button-radio">
  359. <input id="latest" name="latest" type="radio" checked>
  360. <label for="latest">Latest</label>
  361. </span>
  362. <div class="divider"></div>
  363. <span class="button-radio">
  364. <input id="popular" name="latest" type="radio">
  365. <label for="popular">Popular</label>
  366. </span>
  367. </div>
  368. </div>
  369. <div class="writing">
  370. <div contenteditable="true" class="textarea" autofocus spellcheck="false">
  371. <p>Hi <a class="tagged-user">@Jo</a></p>
  372. </div>
  373. <div class="footer">
  374. <div class="text-format">
  375. <button class="btn"><i class="ri-bold"></i></button>
  376. <button class="btn"><i class="ri-italic"></i></button>
  377. <button class="btn"><i class="ri-underline"></i></button>
  378. <button class="btn"><i class="ri-list-unordered"></i></button>
  379. </div>
  380. <div class="group-button">
  381. <button class="btn"><i class="ri-at-line"></i></button>
  382. <button class="btn primary">Send</button>
  383. </div>
  384. </div>
  385. </div>
  386. <div>
  387. <div class="comment">
  388. <div class="user-banner">
  389. <div class="user">
  390. <div class="avatar" style="background-color:#fff5e9;border-color:#ffe0bd; color:#F98600">
  391. AF
  392. <span class="stat green"></span>
  393. </div>
  394. <h5>Albert Flores</h5>
  395. </div>
  396. <button class="btn dropdown"><i class="ri-more-line"></i></button>
  397. </div>
  398. <div class="content">
  399. <p>Before installing this plugin please put back again your wordpress and site url back to http.</p>
  400. </div>
  401. <div class="footer">
  402. <button class="btn"><i class="ri-emotion-line"></i></button>
  403. <div class="divider"></div>
  404. <a href="#">Reply</a>
  405. <div class="divider"></div>
  406. <span class="is-mute">09-02-2025</span>
  407. </div>
  408. </div>
  409. <div class="reply comment">
  410. <div class="user-banner">
  411. <div class="user">
  412. <div class="avatar" style="background-color:#fff5e9;border-color:#ffe0bd; color:#F98600">
  413. GP
  414. <span class="stat green"></span>
  415. </div>
  416. <h5>Grooming Products</h5>
  417. </div>
  418. <button class="btn dropdown"><i class="ri-more-line"></i></button>
  419. </div>
  420. <div class="content">
  421. <p>Hi <a href="#" class="tagged-user">@Albert Flores</a>.
  422. Shop the winston <a href="https://winstonindia.com/collections/grooming-kit-for-men">grooming kit for men</a>, a complete set of high-quality grooming essentials. Ideal for beard care, trimming, and daily maintenance.
  423. </p>
  424. </div>
  425. <div class="footer">
  426. <button class="btn"><i class="ri-emotion-line"></i></button>
  427. <div class="reactions">
  428. <button class="btn react"><img src="https://cdn-0.emojis.wiki/emoji-pics/apple/smiling-face-with-heart-eyes-apple.png" alt="">2</button>
  429. </div>
  430. <div class="divider"></div>
  431. <a href="#">Reply</a>
  432. <div class="divider"></div>
  433. <span class="is-mute">10-05-2025</span>
  434. </div>
  435. </div>
  436. </div>
  437. <div class="load">
  438. <span><i class="ri-refresh-line"></i>Loading</span>
  439. </div>
  440. </div>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda