0% encontró este documento útil (0 votos)
5 vistas7 páginas

Estilos CSS para Página Web Moderna

Cargado por

moni123siscom
Derechos de autor
© All Rights Reserved
Nos tomamos en serio los derechos de los contenidos. Si sospechas que se trata de tu contenido, reclámalo aquí.
Formatos disponibles
Descarga como DOCX, PDF, TXT o lee en línea desde Scribd
0% encontró este documento útil (0 votos)
5 vistas7 páginas

Estilos CSS para Página Web Moderna

Cargado por

moni123siscom
Derechos de autor
© All Rights Reserved
Nos tomamos en serio los derechos de los contenidos. Si sospechas que se trata de tu contenido, reclámalo aquí.
Formatos disponibles
Descarga como DOCX, PDF, TXT o lee en línea desde Scribd

*{

margin: 0;
padding: 0;
box-sizing: border-box;
--negro: #000000;
--rosa: #ffd1dc;
--azul: #00AAE4;
}

body{
font-family: 'Roboto';
}

header{
background-color: #FFD1DC;
text-align: center;
padding: 25px 0;
}
/*este se agrega para lo del menu*/
nav {

overflow: hidden;
}

nav a{
display: inline-block;
text-decoration: none;
color: #696969;
margin: 0 30px;
padding: 5px 15px;
border-radius: 30px;
}

nav a:hover{
background-color: #000;
color: #fff;
}
nav [Link] {
background-color: #000;
}
.encabezado-img{
background-image: url('../img/[Link]');
height: 200px;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #000;
}

.secciones{
margin-top: 70px;
margin-right: 20px;
margin-bottom: 20px;
margin-left: 30px;
}

.form-register{
width: 755px;
background: #24303c;
padding: 38px;
margin: auto;
margin-top: 100px;
border-radius: 4px;
font-family: 'calibri';
color: white;
}

.form-register h4{
font-size: 22px;
margin-bottom: 20px;
}

.control{
width: 24%;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}

.contro{
width: 15%;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}
.contr{
width: 50%;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}
.cont{
width: 45%;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}
.con{
width: 35%;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}
.co{
width: 10%;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}
.c{
width: 50%;
height: 100px;
bacKground: #E0BBE4;
padding: 10px;
border-radius: 4px;
margin-bottom: 16px;
border: 1.5px solid #1f53c5;
font-family: 'calibri';
font-size: 18px;
}
.linea{
background: #ffff00;
height: 2px;
width: 100%;
display: block;
}

.input input{
width: 50%;
padding: 10px 16px;
border-radius: 5px;
outline: none;
}

.input input[type="submit"]{
background-color: var(--rosa);
width: 18%;
color: var(--negro);
font-size: 14px;
font-weight: bold;
border: none;
margin-top: 15px;
transition: background-color .3s ease-in-out;

.input input[type="submit"]:hover{
cursor: pointer;
background-color: var(--azul);
}

.btn button{
width: 30%;
padding: 10px 16px;
border-radius: 5px;
outline: none;
}

.btn button[type="button"]{
background-color: var(--rosa);
color: var(--negro);
font-size: 12.5px;
font-weight: bold;
border: none;
margin-top: 20px;
transition: background-color .3s ease-in-out;
}

.btn button[type="button"]:hover{
cursor: pointer;
background-color: var(--azul);
}

/*estilos para el footer*/


.pie-pagina{
width: 100%;
background-color: #4da8cf; /*color del contenedor del footer*/
}

.pie-pagina .grupo-1{
width: 100%;
max-width: 1300px;
margin: auto;
display: grid;
grid-template-columns: repeat(4, 1fr); /*en el footer dividirlo
en 4 columnas*/
grid-gap: 50px;
padding:10px 0px;
}

.pie-pagina .grupo-1 .box figure{


width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.pie-pagina .grupo-1 .box h2{


margin-bottom: 25px;
font-size: 17px; /*tamaño de fuente para los textos en h2*/
}

.pie-pagina .grupo-1 .box p{


font-size: 14px; /*tamaño de la fuente para los parrafos */
}

.pie-pagina .grupo-1 .red-social a{


display: inline-block;
text-decoration: none;
width: 45px;
height: 45px;
line-height: 45px;
color: #fff;
margin-right: 15px;
background-color: #0471a0; /*cambia color de los iconos*/
text-align: center;
transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover{


color: aqua; /*al seleccionar un icono se pone de otro color*/
}

.pie-pagina .grupo-2{
background-color: #B7D5E5; /*cambia color donde estan los
derechos reservados*/
padding: 15px 10px;
text-align: center;
color: #000000;
}

.pie-pagina .grupo-2 small{


font-size: 12px; /*tamaño de fuente */
}

También podría gustarte