Advertisement
sanjiisan

Untitled

Jun 6th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1.  
  2. body {
  3.     margin: 0 auto;
  4.     width: 500px;
  5. }
  6.  
  7. .repertuar {
  8.     border: 1px dotted #4f4f4f;
  9.     padding: 10px;
  10.     list-style: none;
  11. }
  12.  
  13. .repertuar li {
  14.     background-color: #F5F5F5;
  15.     padding: 10px;
  16. }
  17.  
  18. .movie h3 {
  19.     float: left;
  20.     width: 200px;
  21.     margin: 0;
  22. }
  23.  
  24. .movie .removeMovie, .movie .editMovie {
  25.     float: left;
  26.     width: 80px;
  27.     margin-left: 10px;
  28. }
  29.  
  30. .seans {
  31.     clear: both;
  32. }
  33.  
  34. .editable {
  35.     background-color: white !important;
  36.     border: 1px solid black;
  37. }
  38.  
  39. .editable h3, .editable p, .editable .edit, .editable .delete {
  40.     display: none;
  41. }
  42.  
  43. .updateMovie {
  44.     display: none;
  45. }
  46.  
  47. .movie_description {
  48.     clear: both;
  49.     margin-top: 30px;
  50.     display: block;
  51. }
  52.  
  53. label {
  54.     display: block;
  55.     margin-top: 10px;
  56. }
  57.  
  58. button {
  59.     display: block;
  60.     margin-top: 10px;
  61. }
  62.  
  63. #addMovie {
  64.     margin-top: 20px;
  65.     background-color: orange;
  66.     color: white;
  67.     border: none;
  68.     padding: 6px 10px;
  69.     font-size: 16px;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement