styles.css 844 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .ck-box {
  2. background: rgb( 200, 200, 200 );
  3. padding: 1px 0;
  4. }
  5. .ck-box-region {
  6. background: rgb( 240, 240, 240 );
  7. padding: 5px;
  8. margin: 1px;
  9. }
  10. .ck-box-region:first-child {
  11. margin-top: 0;
  12. }
  13. .ck-box-region:last-child {
  14. margin-bottom: 0;
  15. }
  16. .ck-main {
  17. background: #FFF;
  18. }
  19. .ck-top {
  20. }
  21. .ck-button {
  22. border: solid 1px transparent;
  23. background: transparent;
  24. display: inline-block;
  25. padding: 5px 10px;
  26. border-radius: 1px;
  27. margin-right: 5px;
  28. font-size: 16px;
  29. color: rgb( 69, 69, 69 );
  30. cursor: pointer;
  31. }
  32. .ck-button:hover:not(.ck-disabled) {
  33. border: solid 1px rgb( 180, 180, 180 );
  34. box-shadow: 0 0 2px rgba( 0, 0, 0, 0.1 );
  35. }
  36. .ck-button.ck-on {
  37. border: solid 1px rgb( 200, 200, 200 );
  38. box-shadow: inset 0 0 3px rgba( 0, 0, 0, 0.1 );
  39. background: rgba( 0, 0, 0, 0.05 );
  40. }
  41. .ck-button.ck-disabled {
  42. color: rgb( 180, 180, 180 );
  43. }