Style.css 833 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. body {
  2. background-color: #0089ff;
  3. }
  4. /* #### Forms ##### */
  5. div.CodeMirror {
  6. font-family: Arial;
  7. border: 1px solid;
  8. }
  9. #preview {
  10. border-left: 1px dotted gray;
  11. background-color: #00a4e1;
  12. }
  13. #preview * {
  14. max-width: 100%;
  15. }
  16. .input-group {
  17. margin-bottom: 5px;
  18. }
  19. .alert {
  20. margin-top: 10px;
  21. margin-bottom: 10px;
  22. }
  23. /* #### Lists ##### */
  24. table.list tbody tr td form {
  25. display: inline;
  26. }
  27. /* #### Sortable permission list #### */
  28. div.sort {
  29. display: inline;
  30. margin-right: 10px;
  31. float:left;
  32. width: 45%;
  33. }
  34. div.sort ul {
  35. height:200px;
  36. width:100%;
  37. padding: 0;
  38. }
  39. div.sort ul li {
  40. list-style: none;
  41. margin: 0;
  42. padding: 5px;
  43. border: 1px solid rgba(0, 0, 0, 0.2);
  44. }
  45. div#allow ul {
  46. background-color: lightgreen;
  47. }
  48. div#forbid ul {
  49. background-color: red;
  50. }
  51. .permlist {
  52. overflow-y: scroll;
  53. }