HTML
----------
CSS
-------
ul#list-nav {
min-width: 1100px;
margin:20px;
}
ul#list-nav li {
/*border:1px solid #e9b428;*/
float:left;
overflow:hidden;
}
li.first{
border-top-left-radius:5px;
border-bottom-left-radius:5px;
}
li.last{
border-top-right-radius:5px;
border-bottom-right-radius:5px;
}
ul#list-nav li a {
text-decoration:none;
padding:15px 0;
width:200px;
background-color:#ccc;
color:black;
float:left;
text-align:center;
background:-moz-linear-gradient(top, #fbdc8b 0%, #e9b428 100% );
background:-webkit-linear-gradient(top, #fbdc8b 0%, #e9b428 100% );
}
ul#list-nav li a:hover {
background:-moz-linear-gradient(top, #4d5d8a 0%, #404e78 100%);
color:white;
}
----------
Thursday, February 21, 2013
Subscribe to:
Posts (Atom)
Javascript find highest and lowest from the given inputs
function highAndLow(numbers){ // numbers = "4 5 29 54 4 0 -214 542 -64 1 -3 6 -6" let numbersInArr = numbers.split(' ...
-
function highAndLow(numbers){ // numbers = "4 5 29 54 4 0 -214 542 -64 1 -3 6 -6" let numbersInArr = numbers.split(' ...
-
HTML Jquery $("#num").keypress(function (e){ var charCode = (e.which) ? e.which : e.keyCode; if (charCode > 31 ...
-
//Change the port connect: { options: { port: 8080 , // change this to '0.0.0.0' to a...