168 lines
2.0 KiB
CSS
168 lines
2.0 KiB
CSS
@charset "UTF-8";
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
html{
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
background-image: url("../imagenes/fondo_plano.jpg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
#cabecera {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: white;
|
|
padding:1em;
|
|
display: flex;
|
|
align-items: end;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#cabecera img {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
/* nav {
|
|
position: sticky;
|
|
top: 0;
|
|
width: 100%;
|
|
background-color: white;
|
|
} */
|
|
|
|
nav hr {
|
|
box-shadow: 0px 4px 5px 0px;
|
|
}
|
|
|
|
main {
|
|
padding: 1em;
|
|
}
|
|
|
|
#servicios,
|
|
#productos,
|
|
#contacto {
|
|
padding-top: 100px;
|
|
margin-top: -20px;
|
|
}
|
|
|
|
.menu {
|
|
padding-left: 1em;
|
|
}
|
|
|
|
.boton_menu {
|
|
margin: 0.2em;
|
|
color: #1a89dc;
|
|
font-size: 40px;
|
|
}
|
|
|
|
hr {
|
|
width: 100%;
|
|
background-color: #1a89dc;
|
|
height: 2px;
|
|
margin-left: 0px;
|
|
}
|
|
|
|
h2,
|
|
h3,
|
|
p {
|
|
padding: 1em;
|
|
}
|
|
|
|
h2 {
|
|
color: #1a89dc;
|
|
}
|
|
|
|
table {
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
|
|
table tr td img {
|
|
width: 100%;
|
|
max-width: 300px;
|
|
}
|
|
|
|
table tr td {
|
|
color: #1a89dc;
|
|
font-weight: bold;
|
|
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;
|
|
}
|
|
|
|
li {
|
|
list-style-type: circle;
|
|
}
|
|
|
|
span {
|
|
color: #1a89dc;
|
|
width: 300px;
|
|
}
|
|
|
|
iframe {
|
|
width: 100%;
|
|
border: 2px solid #1a89dc;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#subircaja {
|
|
position: fixed;
|
|
right: 10px;
|
|
bottom: 10px;
|
|
}
|
|
#subirimg {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
.lista_menu {
|
|
/* display: inline; */
|
|
width: 100%;
|
|
}
|
|
.lista_menu li {
|
|
list-style-type: none;
|
|
float: left;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
.lista_menu li {
|
|
list-style-type: square;
|
|
text-align: left;
|
|
clear: left;
|
|
}
|
|
.boton_menu {
|
|
font-size: 1em;
|
|
}
|
|
#servicios,
|
|
#productos,
|
|
#contacto {
|
|
padding-top: 120px;
|
|
margin-top: -60px;
|
|
}
|
|
}
|