migration.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .title {
  2. display : block;
  3. font-size : 2em;
  4. margin-top : 20px;
  5. color : #e7ad24;
  6. }
  7. label[for=migrationutility-databasetables] {
  8. display : block;
  9. }
  10. .inline-elements {
  11. display : table;
  12. width : 100%;
  13. }
  14. .inline-elements > div {
  15. display : table-cell;
  16. vertical-align : top;
  17. }
  18. .inline-elements > div:first-of-type {
  19. width : 30%;
  20. }
  21. .inline-elements > div:last-of-type {
  22. width : 70%;
  23. }
  24. .inline-elements select {
  25. min-width : 100%;
  26. }
  27. .inline-elements input {
  28. min-width : 100%;
  29. }
  30. .button-style {
  31. display : inline-block;
  32. padding : 2px 10px;
  33. margin : 0;
  34. margin-left : 20px;
  35. font-size : 0.9em;
  36. font-weight : normal;
  37. background-color : rgba(155, 202, 242, 0.56);
  38. -webkit-border-radius : 5px;
  39. -moz-border-radius : 5px;
  40. border-radius : 5px;
  41. cursor : pointer;
  42. }