Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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