build-word-count-source.html 360 B

1234567891011121314151617
  1. <style>
  2. .word-count {
  3. padding: 10px 20px;
  4. margin-bottom: 15px;
  5. background: var(--ck-color-toolbar-background);
  6. border-left: 10px hsl(291, 64%, 42%) solid;
  7. box-shadow: 2px 2px 2px hsla(0,0%,0%,0.1);
  8. }
  9. .word-count::before {
  10. content: "Text statistics";
  11. display: block;
  12. font-weight: bold;
  13. font-size: 1.2em;
  14. margin-bottom: .4em;
  15. }
  16. </style>