Home › Forums › CSS › [Solved] Can someone help me with this problem in css? › Reply To: [Solved] Can someone help me with this problem in css?
August 29, 2014 at 7:55 am
#181046
Participant
html{height: 98%;}
body{height:98%}
#content{
width:825px;
height:98%;
margin:0px auto;
padding-top:0px;
padding-left:15px;
padding-right:15px;
-webkit-box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
-moz-box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
}
#logo{
padding-top: 190px;
}
nav ul {
text-align:center;
}
nav ul li{
float:left;
padding:0px 30px 0px 80px;
list-style-type:none;
}
nav ul li a{
font-size:20pt;
font-weight: bold;
color: rgb(0, 0, 0);
text-decoration: none;
text-shadow: 0 1px 1px rgba(0,0,0,0.70);
-webkit-border-radius:6px;
-moz-border-radius:6px;
border-radius:6px;
-webkit-transition:all 1.0s ease-in-out;
-moz-transition:all 1.0s ease-in-out;
-o-transition:all 1.0s ease-in-out;
transition:all 1.0s ease-in-out;
}
nav ul li a:hover,
nav ul li a:focus
{
color: #FFFFFF;
background-color: rgb(0,0,0);
}