1234567891011121314151617 |
- .opt-md,.opt-lg,.opt-xl,.opt-xxl { display: none; }
- .opt-all,.opt-sm { display: table-cell; }
- @media screen and (min-width:35.5em){
- .opt-all,.opt-sm { display: table-cell; }
- }
- @media screen and (min-width:40em){
- .opt-all,.opt-sm,.opt-md { display: table-cell; }
- }
- @media screen and (min-width:64em){
- .opt-all,.opt-sm,.opt-md,.opt-lg { display: table-cell; }
- }
- @media screen and (min-width:80em){
- .opt-all,.opt-sm,.opt-md,.opt-lg,.opt-xl { display: table-cell; }
- }
- @media screen and (min-width:120em){
- .opt-all,.opt-sm,.opt-md,.opt-lg,.opt-xl,.opt-xxl { display: table-cell; }
- }
|