style.css 303 B

123456789101112131415161718192021222324
  1. [editable] {
  2. cursor: pointer;
  3. text-decoration: none;
  4. color: #428bca;
  5. border-bottom: 1px dashed #428bca;
  6. }
  7. [editable]:empty {
  8. font-style: italic;
  9. color: #dd1144;
  10. text-decoration: none;
  11. }
  12. [editable]:empty:after {
  13. content: "Not set";
  14. }
  15. #change {
  16. display: none;
  17. }
  18. button {
  19. margin-left: 10px;
  20. }