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.

28 lines
784B

  1. /* Adjust margins outwards, so column contents line up with the edges of the
  2. parent of container-fluid. */
  3. .container-fluid.crosstalk-bscols {
  4. margin-left: -30px;
  5. margin-right: -30px;
  6. white-space: normal;
  7. }
  8. /* But don't adjust the margins outwards if we're directly under the body,
  9. i.e. we were the top-level of something at the console. */
  10. body > .container-fluid.crosstalk-bscols {
  11. margin-left: auto;
  12. margin-right: auto;
  13. }
  14. .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {
  15. display: inline-block;
  16. padding-right: 12px;
  17. vertical-align: top;
  18. }
  19. @media only screen and (max-width:480px) {
  20. .crosstalk-input-checkboxgroup .crosstalk-options-group .crosstalk-options-column {
  21. display: block;
  22. padding-right: inherit;
  23. }
  24. }