Posted by : Magnus Monday 30 July 2012

Preview

In this tutorial we will code in pure CSS3 the Navigation Menu that you can find in Impressionist UI by Vladimir Kudinov.


Step 1 – HTML Markup


We will create an unordered list with a list item and an anchor tag for each menu link. To create the sub menu add another unordered list inside of the list.

<ul class="menu">
<li><a href="#">My dashboard</a></li>
<li><a href="#">Likes</a></li>
<li><a href="#">Views</a>
<ul>
<li><a href="#" class="documents">Documents</a></>
<li><a href="#" class="messages">Messages</a></li>
<li><a href="#" class="signout">Sign Out</a></li>
</ul>
</li>
<li><a href="#">Uploads</a></li>
<li><a href="#">Videos</a></li>
<li><a href="#">Documents</a></li>
</ul>

Step 1

Step 2 – Menu Layout


We will start to remove the margin, padding, border and outline from all the elements of the menu. Then we will add a fixed width and height to the menu, rounded corners and the CSS3 gradients. To align the links horizontally we will float the lists to left. We also need to set the position to relative because we will need that to align the sub menus.

.menu,
.menu ul,
.menu li,
.menu a {
    margin0;
    padding0;
    bordernone;
    outlinenone;
}
.menu {
    height40px;
    width505px;
    background#4c4e5a;
    background: -webkit-linear-gradient(top#4c4e5a 0%,#2c2d33 100%);
    background: -moz-linear-gradient(top#4c4e5a 0%,#2c2d33 100%);
    background: -o-linear-gradient(top#4c4e5a 0%,#2c2d33 100%);
    background: -ms-linear-gradient(top#4c4e5a 0%,#2c2d33 100%);
    background: linear-gradient(top#4c4e5a 0%,#2c2d33 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.menu li {
    positionrelative;
    list-stylenone;
    floatleft;
    displayblock;
    height40px;
}

We will hide the sub menu temporarily to be easier to style the first level.
.menu ul { display: none; }

Step 3 – Menu Links


To style the menu links we will add some basic CSS properties like font, color, padding, etc. 
Then we will add a dark text shadow and a color transition to create a smooth effect when the 
color changes on hover state. To create the links separator add a border to the left and right 
and then we will remove the left border from the first link and the right border from the last link. 
For the hover state we will only change the text color.

.menu li a {
    displayblock;
    padding0 14px;
    margin6px 0;
    line-height28px;
    text-decorationnone;
    border-left1px solid #393942;
    border-right1px solid #4f5058;
    font-familyHelveticaArialsans-serif;
    font-weightbold;
    font-size13px;
    color#f3f3f3;
    text-shadow1px 1px 1px rgba(0,0,0,.6);
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}
.menu li:first-child a { border-leftnone; }
.menu li:last-child a{ border-rightnone; }
.menu li:hover > a { color#8fde62; }

Step 3

Step 4 – Sub Menu



First let’s remove this line of code that we have added on the second step.

.menu ul { display: none; }


Now we will style the sub menu. We will start to position the sub menu 40px from the top and 0px from the left of the menu item and add bottom rounded corners. We will set the opacity to 0 and on hover state to 1 to create the fade in/out effect. For the slide down/up effect we need to set the list height to 0px when is hidden and to 36px on hover state.

.menu ul {

    positionabsolute;

    top40px;

    left0;


    opacity: 0;
    background#1f2024;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-transition: opacity .25s ease .1s;
    -moz-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
}
.menu li:hover > ul { opacity: 1; }
.menu ul li {
    height0;
    overflowhidden;
    padding0;
    -webkit-transition: height .25s ease .1s;
    -moz-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
}
.menu li:hover > ul li {
    height36px;
    overflowvisible;
    padding0;
}
We will set the width of the sub menu links to 100px. Instead of left and right borders we will add a bottom one and remove it from the last link.

.menu ul li a {

    width100px;

    padding4px 0 4px 40px;

    margin0;


    bordernone;
    border-bottom1px solid #353539;
}
.menu ul li:last-child a { bordernone; }

To finish it we only need to add an icon to each sub menu link. To do it we will create a custom class for each one and add a background image.

.menu a.documents {backgroundurl(../img/docs.png) no-repeat 6px center;}
.menu a.messages {backgroundurl(../img/bubble.png) no-repeat 6px center;}
.menu a.signout {backgroundurl(../img/arrow.png) no-repeat 6px center;}

Step 4

Conclusion

We’ve successfully created this pure CSS3 dropdown menu. If you have any question let me know in the comments. Also don’t forget to leave some feedback and share it with your friends. Follow us if you want to be the first to know about the latest tutorials and articles.
Preview Download

Leave a Reply

Subscribe to Posts | Subscribe to Comments

- Copyright © Bjonk Design -