暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ui.css 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #preview-container {
  2. margin: 10px;
  3. background-color: white;
  4. display: flex;
  5. justify-content: space-around;
  6. align-items: center;
  7. }
  8. /* Small screen (preview fills all columns) */
  9. @media (max-width : 1199px) {
  10. .preview-container {
  11. flex-direction: row;
  12. }
  13. .card {
  14. margin-right: 10px;
  15. }
  16. }
  17. /* Large screen (preview fills one column, columns are narrow) */
  18. @media (min-width: 1200px) and (max-width : 1599px) {
  19. .preview-container {
  20. flex-direction: column;
  21. }
  22. .card {
  23. margin-bottom: 10px;
  24. }
  25. }
  26. /* Huge screen (preview fills one column, columns are wide) */
  27. @media (min-width : 1600px) {
  28. .preview-container {
  29. flex-direction: row;
  30. }
  31. .card {
  32. margin-right: 10px;
  33. }
  34. }
  35. .row-eq-height {
  36. display: -webkit-box;
  37. display: -webkit-flex;
  38. display: -ms-flexbox;
  39. display: flex;
  40. }
  41. .color-input-addon {
  42. border-right: 0;
  43. border-radius: 4px !important;
  44. border-top-right-radius: 0 !important;
  45. border-bottom-right-radius: 0 !important;
  46. }
  47. .form-group {
  48. margin-bottom: 10px;
  49. }
  50. .card h4 {
  51. /* Revert bootstrap style for the card preview */
  52. font-weight: bold;
  53. }
  54. .form-horizontal {
  55. margin-top: 10px;
  56. }