Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. }
  57. .dropdown-menu>li>a {
  58. padding-left: 35px;
  59. position: relative;
  60. }
  61. .dropdown-menu a > span {
  62. position: absolute;
  63. left: 5px;
  64. background-color: #000;
  65. background-repeat: no-repeat;
  66. background-position: center center;
  67. width: 24px;
  68. height: 24px;
  69. background-size: auto 90%;
  70. top: 50%;
  71. margin-top: -12px;
  72. }