Sin resumen de edición
Sin resumen de edición
Línea 76: Línea 76:


/* unvisited link */
/* unvisited link */
a:link {
 
.a:link {
     color: red;
     color: red;
}
}


/* visited link */
/* visited link */
a:visited {
.a:visited {
     color: green;
     color: green;
}
}


/* mouse over link */
/* mouse over link */
a:hover {
.a:hover {
     color: hotpink;
     color: hotpink;
}
}


/* selected link */
/* selected link */
a:active {
.a:active {
     color: blue;
     color: blue;
}
}

Revisión del 16:28 11 dic 2017

/* Los estilos CSS colocados aquí se aplicarán a todas las apariencias */

.portada-header {
	background: #fee;
	border: 1px solid #f00;
	margin-bottom: 1em;
	padding: 1em;
}
.portada-header-titulo {
	font-size: 2em;
	font-weight: 300;
}

.portada-seccion {
	border: 1px solid #f00;
	margin-bottom: 1em;
	overflow: hidden;
}
.portada-seccion-titulo {
	background: #444;
	color: white;
	font-size: 1em;
	font-weight: normal;
	padding: 1em;
}
.portada-seccion-contenido {
	overflow: hidden;
	padding: 1em;
}
.portada-footer {
	background: #e5e5e6;
	border: 1px solid #f00;
	margin-bottom: 1em;
	overflow: hidden;
}


.portada-float-right {
	float: right;
	margin-left: 1em;
	width: 30%;
}
.portada-align-right {
	text-align: right;
}

.infobox {
	border: 1px solid #f00;
	float: right;
	margin: 0 0 1em 1em;
	width: 300px;
}
.infobox-imagen {
	text-align: center;
}
.infobox-imagen-descripcion {
	font-size: small;
	font-style: italic;
	padding: 0 .5em .5em .5em;
	text-align: center;
}
.infobox-titulo,
.infobox-subtitulo {
	background: #444;
	color: white;
	font-size: 1em;
	font-weight: normal;
	padding: 1em;
	text-align: center;
}
.infobox-datos th {
	padding: .3em;
	text-align: right;
	vertical-align: top;
}

/* unvisited link */

.a:link {
    color: red;
}

/* visited link */
.a:visited {
    color: green;
}

/* mouse over link */
.a:hover {
    color: hotpink;
}

/* selected link */
.a:active {
    color: blue;
}