Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ui.css 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. #filter-function, #sort-function {
  12. height: 300px;
  13. }
  14. /* Small screen (preview fills all columns) */
  15. @media (max-width : 1199px) {
  16. .preview-container {
  17. flex-direction: row;
  18. }
  19. .card {
  20. margin-right: 10px;
  21. }
  22. }
  23. /* Large screen (preview fills one column, columns are narrow) */
  24. @media (min-width: 1200px) and (max-width : 1599px) {
  25. .preview-container {
  26. flex-direction: column;
  27. }
  28. .card {
  29. margin-bottom: 10px;
  30. }
  31. }
  32. /* Huge screen (preview fills one column, columns are wide) */
  33. @media (min-width : 1600px) {
  34. .preview-container {
  35. flex-direction: row;
  36. }
  37. .card {
  38. margin-right: 10px;
  39. }
  40. }
  41. .row-eq-height {
  42. display: -webkit-box;
  43. display: -webkit-flex;
  44. display: -ms-flexbox;
  45. display: flex;
  46. }
  47. .color-input-addon {
  48. border-right: 0;
  49. border-radius: 4px !important;
  50. border-top-right-radius: 0 !important;
  51. border-bottom-right-radius: 0 !important;
  52. }
  53. .form-group {
  54. margin-bottom: 10px;
  55. }
  56. .card h4 {
  57. /* Revert bootstrap style for the card preview */
  58. font-weight: bold;
  59. }
  60. .form-horizontal {
  61. margin-top: 10px;
  62. }