Dia 21
This commit is contained in:
@@ -174,6 +174,82 @@ iframe {
|
||||
float: left;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* estilos para contenedores de elementos del formularios */
|
||||
.form_citas {
|
||||
margin: auto;
|
||||
padding: 2em 0 4em;
|
||||
max-width: 650px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2em;
|
||||
}
|
||||
|
||||
.form_title {
|
||||
border: 2px solid #1a89dc;
|
||||
box-sizing: border-box;
|
||||
border-radius: 0.5em;
|
||||
padding: 0.2em 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.form_main {
|
||||
border: 2px solid #1a89dc;
|
||||
color: #1a89dc;
|
||||
box-sizing: border-box;
|
||||
padding: 0.3em;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5em;
|
||||
}
|
||||
|
||||
.form_main > fieldset {
|
||||
border: 2px solid #1a89dc;
|
||||
box-sizing: border-box;
|
||||
padding: 0.5em;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.6em;
|
||||
}
|
||||
|
||||
.flex_responsive {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 0.5em;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* Estilos para aplicar a elementos del formulario directamente*/
|
||||
.form_main > fieldset legend {
|
||||
margin-left: 1em;
|
||||
padding: 0 0.2em;
|
||||
font-weight: 900;
|
||||
}
|
||||
label {
|
||||
font-weight: 400;
|
||||
width: 6em;
|
||||
}
|
||||
|
||||
select, textarea, input {
|
||||
padding: 0.2em;
|
||||
flex-grow: 1;
|
||||
font-size: large;
|
||||
background-color: transparent;
|
||||
border: 1px solid #1a89dc;
|
||||
border-radius: 0.2em;
|
||||
}
|
||||
input:hover,
|
||||
input:focus {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*Media Querys para aplicar a dispositivos moviles*/
|
||||
@media (max-width: 550px) {
|
||||
.lista_menu li {
|
||||
@@ -194,6 +270,11 @@ iframe {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.flex_responsive {
|
||||
display: flex;
|
||||
align-items: normal;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user