Advertisement
Tsunland

Navigation HTML

Jun 18th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. /* ADDITIONS - NAVIGATION */
  2.  
  3. /*The header of each part of the navigation*/
  4. .navi_linksu h3 {
  5. font-size:22px;
  6. margin-bottom:-5px;
  7. border:none;
  8. color: #c25533; /*color of header*/
  9. font-family: 'selima';
  10. font-weight:normal;
  11. letter-spacing:1px;
  12. text-transform:lowercase;
  13. background:transparent;
  14. }
  15.  
  16. .navi_linksu {
  17. text-align:center;
  18. }
  19.  
  20. .navi_linksu a {
  21. display: inline-block;
  22. width: 120px;
  23. padding: 5px;
  24. margin:5px;
  25. font-size:11px;
  26. background-image: url('');
  27. background:transparent; /*color of navigation links background*/
  28. background-repeat:repeat;
  29. background-attachment:fixed;
  30. color:#c25533;
  31. font-family:calibri;
  32. text-transform:uppercase;
  33.  
  34.  
  35. }
  36.  
  37. .navi_linksu a:hover {
  38. -webkit-transition: all .5s ease-in-out;
  39. -moz-transition: all .5s ease-in-out;
  40. -ms-transition: all .5s ease-in-out;
  41. -o-transition: all .5s ease-in-out;
  42. transition: all .5s ease-in-out;
  43. color:#c25533; /*color of links on hover*/
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement