Sunday, September 29, 2019

Navigation Menu and Custom Theme in CSS

I  simple navigation menu and custom theme in CSS (Cascading Style Sheet) created by my close friend, business partner and fellow software engineer Sir Larry Dave Emol.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.


My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.


My personal website is http://www.jakerpomperada.com.


Sample Program Output


Program Listing

<style>

.description a {
    color: powderblue;
}
.header-outer {
    border-radius: 7px;
    background: rgb(167,207,223); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(167,207,223,1) 0%, rgba(35,83,138,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(167,207,223,1) 0%,rgba(35,83,138,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(167,207,223,1) 0%,rgba(35,83,138,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a7cfdf', endColorstr='#23538a',GradientType=0 ); /* IE6-9 */
}

.header-inner .Header .descriptionwrapper li {
    display: inline;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid Transparent;
    position: relative;
}
.header-inner .Header .descriptionwrapper li::after {
    content: '';
    width: 0;
    position: absolute;
    border-bottom: 2px solid Transparent;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}
.header-inner .Header .descriptionwrapper li:hover::after {
    width: 100%;
    border-bottom: 2px solid white;
}
body {
    background: #ccc none repeat scroll top left;
}
.header-inner .Header .descriptionwrapper li a {
    color: #fff;
    text-decoration: none;
}

</style>

No comments:

Post a Comment