Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <style>
  2. @media(max-width: 1000px){
  3. #main-nav {
  4. margin-top:105px;
  5. margin-left: 300px
  6. display: inline-table
  7. }
  8.  
  9. #main-nav a{
  10. font-weight: bolder;
  11. display: table-cell;
  12. text-align: center;
  13. width: 95px;
  14. height: 35px;
  15. line-height: 35px;
  16. text-decoration: none;
  17. color: #a0a0a0;
  18. text-transform: uppercase;
  19. font-size: 0.7em;
  20. }
  21. }
  22. @media(min-width: 1001px){
  23. #main-nav {
  24. margin-top:105px;
  25. margin-left: 300px
  26. display: block;
  27. }
  28.  
  29. #main-nav a{
  30. font-weight: bolder;
  31. display: block;
  32. float-left;
  33. text-align: center;
  34. width: 95px;
  35. height: 35px;
  36. line-height: 35px;
  37. text-decoration: none;
  38. color: #a0a0a0;
  39. text-transform: uppercase;
  40. font-size: 0.7em;
  41. }
  42. }
  43. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement