12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #preview-container {
- margin: 10px;
- background-color: white;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
-
- #card-contents {
- height: 240px;
- }
-
- #filter-function, #sort-function {
- height: 300px;
- }
-
- /* Small screen (preview fills all columns) */
- @media (max-width : 1199px) {
- .preview-container {
- flex-direction: row;
- }
- .card {
- margin-right: 10px;
- }
- }
- /* Large screen (preview fills one column, columns are narrow) */
- @media (min-width: 1200px) and (max-width : 1599px) {
- .preview-container {
- flex-direction: column;
- }
- .card {
- margin-bottom: 10px;
- }
- }
- /* Huge screen (preview fills one column, columns are wide) */
- @media (min-width : 1600px) {
- .preview-container {
- flex-direction: row;
- }
- .card {
- margin-right: 10px;
- }
- }
-
- .row-eq-height {
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- }
-
- .color-input-addon {
- border-right: 0;
- border-radius: 4px !important;
- border-top-right-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- }
-
- .form-group {
- margin-bottom: 10px;
- }
-
- .card h4 {
- /* Revert bootstrap style for the card preview */
- font-weight: bold;
- }
-
- .form-horizontal {
- margin-top: 10px;
- }
|