Advertisement
MaHarder

styles

Sep 8th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.21 KB | None | 0 0
  1. .ul.list {
  2. list-style:none;
  3. }
  4. .list > li {
  5. display:inline-block;
  6. float: left;
  7. padding: 10px;
  8. }
  9. @media (max-width:768px){
  10. ul.list{
  11. display:none;
  12. opacity:0;
  13. }
  14. .opened {
  15. display:block;
  16. opacity:1;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement