Advertisement
Guest User

Editors CSS

a guest
Feb 27th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.52 KB | None | 0 0
  1. #content {
  2.     width: 600px;
  3.     margin: 0 auto;
  4. }
  5.  
  6. #editorMenu {
  7.     list-style-type: none;
  8.     margin: 0;
  9.     padding: 0;
  10. }
  11.  
  12. #editorMenu li {
  13.     display: inline;
  14.     margin-left: 5px;
  15.     padding-left: 5px;
  16.     border-left: 1px solid #000;
  17. }
  18.  
  19. #editorMenu li:first-child {
  20.     margin: 0;
  21.     padding: 0;
  22.     border: 0;
  23. }
  24.  
  25. .delete {
  26.     color: red !important;
  27. }
  28.  
  29. .active {
  30.     font-weight: bold;
  31. }
  32.  
  33. #editorMenu a {
  34.     color: #000;
  35.     text-decoration: none;
  36. }
  37.  
  38. #editorMenu a:hover {
  39.     font-weight: bold;
  40. }
  41.  
  42. #editorArea {
  43.     width: 100%;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement