Advertisement
Guest User

Menu css

a guest
Oct 1st, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1.  
  2. ul {
  3.     list-style: none
  4.     }
  5.  
  6. ul li {
  7.     width: 150px;
  8.     background: #FFFFFF;
  9.             }
  10.  
  11. #accueil {
  12.     width: 150px;
  13.     background: #FFFFFF;
  14.     padding: 10px;
  15.     border-top: 1px solid #000000;
  16.     border-left:1px solid #000000;
  17.     border-right:1px solid #000000;
  18.     border-bottom:0;
  19.     border-top-left-radius: 5px;
  20.     border-top-right-radius: 5px;
  21.  
  22.             }
  23.  
  24. #inscription {
  25.     width: 150px;
  26.     background: #FFFFFF;
  27.     padding: 10px;
  28.     border: 1px solid #000000;
  29.             }
  30.  
  31. #activite {
  32.     width: 150px;
  33.     background: #FFFFFF;
  34.     padding: 10px;
  35.     border-bottom: 1px solid #000000;
  36.     border-right: 1px solid #000000;
  37.     border-left: 1px solid #000000;
  38.     border-top:0;
  39.     border-bottom-left-radius: 5px;
  40.     border-bottom-right-radius: 5px;
  41.  
  42.             }
  43.        
  44.  
  45. nav ul{
  46.     padding:60px;
  47.     margin:60px;
  48.     list-style-type:none;
  49.    
  50.         }
  51.            
  52. #menu :hover{
  53.     background-color:#B0E0E6;
  54.     color:#0000FF;
  55.     font-weight: bold;
  56.             }
  57.            
  58. nav ul a{
  59.     display:block;
  60.     text-decoration:none;
  61.     color:#000000;
  62.    
  63.             }
  64.        
  65. ul li {
  66.     cursor:hand
  67.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement