IFCD0210/Practicas/Practicas HTML/Repaso/css/style.css
2023-12-11 13:59:53 +01:00

83 lines
986 B
CSS

@charset "UTF-8";
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
outline: none;
}
body {
background-image: url("../imagenes/fondo_plano.jpg");
background-repeat: no-repeat;
background-size: cover;
font-family: Arial, Helvetica, sans-serif;
padding: 10px;
}
.boton_menu {
margin: 0.2em;
color: #1a89dc;
font-size: 40px;
}
.prueba {
text-align: center;
}
hr {
width: 100%;
background-color: #1a89dc;
height: 2px;
}
h2,
h3,
p {
padding: 1em;
}
h2 {
color: #1a89dc;
}
table {
width: 90%;
margin: auto;
color: #1a89dc;
font-weight: bold;
}
table tr td img {
width: 90%;
max-width: 300px;
}
table tr td {
text-align: center;
}
dl {
font-weight: bold;
font-size: larger;
padding: 1em;
}
dl dt {
color: #1a89dc;
}
ul {
color: #1a89dc;
width: 300px;
margin: auto;
font-weight: bold;
}
/* nav{
position: sticky;
top: 0;
width: 100%;
background-color: white;
} */