21/10/2005, 12:06
|
| | Fecha de Ingreso: mayo-2003
Mensajes: 527
Antigüedad: 21 años, 8 meses Puntos: 3 | |
ok, pero advierto de que es bastante larguito. De todas formas, hay estilos presentes que aún no he definido, y en general los estilos del final son de cosas pequeñas, aunque puede que tengan algo que ver en el problema. Ahí va:
Código:
/* CSS Document */
body{
width:800px;
margin-left: 0px;
margin-top: 0px;
margin-bottom:0px;
margin-right:0px;
background-color:#000000;
}
input, select, textarea {
font-family: Georgia, Verdana, Times, serif;
font-size: 9px;
}
.comillasInicio {
color: #555555;
}
/* Estilos principales de página */
#cabecera{
font-family:Georgia, Verdana, Times, serif;
background-color:#FFFFFF;
text-align:center;
color:#CC0000;
border-bottom:1px solid #CCCCCC;
height:100px;
width: 800px;
}
#cabecera a:link{
text-decoration:none;
font-family:Georgia, Verdana, Times, serif;
color:#CC0000;
font-size:12px;
}
#cabecera a:visited{
text-decoration:none;
font-family:Georgia, Verdana, Times, serif;
color:#DD0000;
font-size:12px;
}
#cabecera a:active{
text-decoration:none;
font-family:Georgia, Verdana, Times, serif;
color:#FF0000;
font-size:12px;
}
#cabecera a:hover{
text-decoration:underline;
font-family:Georgia, Verdana, Times, serif;
color:#DD0000;
font-size:12px;
}
#lateralizq{
font-family:Georgia, Verdana, Times, serif;
background-color:#99CCCC;
color:#666666;
border-bottom:1px solid #555555;
border-right:1px solid #555555;
float:left;
width:163px;
height:auto;
margin: 0px;
padding: 5px;
font-size: small;
}
#principal{
background-color:#EEEEEE;
color:#666666;
width:450px;
float:left;
}
#principal h1{
text-align:center;
}
#principal p{
text-align:justify;
text-indent: 10px;
padding: 10px;
font-family: Georgia, Times, serif;
font-size: small;
}
#lateralder{
font-family:Georgia, Verdana, Times, serif;
background-color:#99CCCC;
color:#666666;
float:right;
width:163px;
padding-left: 12px;
font-size: small;
border-bottom-color: #555555;
border-bottom-style: solid;
border-bottom-width: 1px;
border-left-color: #555555;
border-left-style: solid;
border-left-width: 1px;
padding-top: 10px;
}
#pie{
background-color:#CCCCCC;
color:#666666;
width:100%;
clear:both;
text-align:center;
border-top-color: CCCCCC;
border-top-style: solid;
border-top-width: 1px;
}
/* Subestilos de cabecera */
#cabecera titulo h1{
color:#FF6600;
font-style:oblique;
border-bottom: 2px solid #555555;
text-align: center;
}
#menu table{
width:100%;
background-color:#CCCCCC;
border: solid #000000 0px;
}
#menu td{
background-color:#CCCCCC;
text-align: center;
border-top-width: 0px;
border-right-width: 0px;
border-left-width: 0px;
border-bottom-style: solid;
border-bottom-color: #666666;
border-bottom-width: 1px;
}
#nompag{
color:#666666;
font-style:oblique;
text-align: center;
background-color:#FF9900;
border-bottom-color: #555555;
border-bottom-style: solid;
border-bottom-width: 1px;
}
/* Subestilos de lateralizq */
.search{
padding: 5px 5px 5px 5px;
border-bottom: 1px solid #555555;
}
#eventoshoy{
padding: 5px 5px 5px 5px;
border-bottom-color: #555555;
border-bottom-style: solid;
border-bottom-width: 1px;
}
#calendario{
padding: 5px 5px 5px 5px;
border-bottom-color: #555555;
border-bottom-style: solid;
border-bottom-width: 1px;
}
/* Subestilos de lateralder */
#login{
}
.anuncio{
text-align: center;
}
/* Subestilos de principal */
.noticia{
}
.agenda{
}
/* Subestilos de eventoshoy */
#evento{
}
#evento h1 {
font-size:small;
font-weight:bold;
text-align: center;
}
#evento p {
font-size:x-small;
text-align: justify;
}
/* Estilos de formulario de introducción */
#formIntro input, select, textarea{
font-family: Georgia, Verdana, Times, serif;
font-size:8px;
}
#formIntro table{
color:#666666;
font-size:10px;
width:450px;
padding: 5px 5px 5px 5px;
font-family: Georgia, Verdana, Times, serif;
}
#formIntro td{
border-bottom: 1px solid #99CCCC;
}
/* Estilos de listado de locales */
#mostrarLocales{
font-family:Georgia, Verdana, Times, serif;
color:#666666;
font-size:small;
}
#mostrarLocales i{
color:#FF6600;
}
|