responsive-visibility-collapse.css 598 B

1234567891011121314151617
  1. .opt-md,.opt-lg,.opt-xl,.opt-xxl { display: none; }
  2. .opt-all,.opt-sm { display: table-cell; }
  3. @media screen and (min-width:35.5em){
  4. .opt-all,.opt-sm { display: table-cell; }
  5. }
  6. @media screen and (min-width:40em){
  7. .opt-all,.opt-sm,.opt-md { display: table-cell; }
  8. }
  9. @media screen and (min-width:64em){
  10. .opt-all,.opt-sm,.opt-md,.opt-lg { display: table-cell; }
  11. }
  12. @media screen and (min-width:80em){
  13. .opt-all,.opt-sm,.opt-md,.opt-lg,.opt-xl { display: table-cell; }
  14. }
  15. @media screen and (min-width:120em){
  16. .opt-all,.opt-sm,.opt-md,.opt-lg,.opt-xl,.opt-xxl { display: table-cell; }
  17. }