Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.16 KB | None | 0 0
  1. .dropdown-submenu {
  2. position: relative;
  3. }
  4. .dropdown-submenu .dropdown-menu {
  5. top: 0;
  6. left: 100%;
  7. margin-top: -1px;
  8. }.container{
  9.     width: 1500px;
  10.     height: 1000px;
  11.     background-color: white;
  12.  
  13. }#mySidenav a {
  14.     position: absolute; /* Position them relative to the browser window */
  15.     left: -180px; /* Position them outside of the screen */
  16.     transition: 0.3s; /* Add transition on hover */
  17.     padding: 15px; /* 15px padding */
  18.     width: 300px; /* Set a specific width */
  19.     text-decoration: none; /* Remove underline */
  20.     font-size: 20px; /* Increase font size */
  21.     color: white; /* White text color */
  22.     border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
  23.   }
  24.  
  25.   #mySidenav a:hover {
  26.     left: 0; /* On mouse-over, make the elements appear as they should */
  27.    
  28.   }
  29.  
  30.  
  31.   #about {
  32.     top: 50px;
  33.     background-color: #4CAF50;
  34.   }
  35.  
  36.   #blog {
  37.     top: 80px;
  38.     background-color: #2196F3; /* Blue */
  39.   }
  40.  
  41.   #projects {
  42.     top: 140px;
  43.     background-color: #f44336; /* Red */
  44.   }
  45.  
  46.   #contact {
  47.     top: 200px;
  48.     width: 20%;
  49.     background-color: #555 /* Light Black */
  50.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement