ArmadoDeForm.css 2.7 KB
html {
    --Color: rgb(1, 194, 120);
    font-family: 'Montserrat', sans-serif;
}

h1,
h3 {
    text-align: center;
}

h1 {
    font-size: 40px;
}

body {
    background-color: whitesmoke;
}

#FormularioResultante {
    width: 98%;
    margin: auto;
    height: 100%;
}

.BotonesContainer {
    width: 100%;
    height: 5%;
    text-align: center;
}

.BotonFormResultante {
    font-size: 30px;
    border: none;
    color: white;
    height: 90%;
    width: 48%;
    margin: 0.5%;
    margin-top: 2%;
    border-radius: 5px;
    text-align: center;
    background-color: rgb(151, 151, 151);
}

#TabsContainer {
    width: 100%;
    height: auto;
}

.Botones {
    border-radius: 5px 5px 0px 0px;
    background-color: rgb(168, 168, 168);
    border: none;
    height: 100%;
    margin: 0.1%;
}

.BotonesActive{
    background-color: var(--Color);
    height: 105%;
    border-bottom: none;
}

.Botones:hover {
    background-color: rgb(53, 53, 53), 0.5;
}

.Tabs {
    display: none;
    height: auto;
    background-color: var(--Color);
    overflow: scroll;
}

.TabCard {
    height: auto;
    width: 90%;
    background-color: white;
    box-shadow: 2px 2px 5px #575757;
    padding: 1%;
    border-radius: 2px;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 2%;
    min-height: 70%;
    text-align: center;
}

.TabTitle {
    text-align: center;
    font-size: 5vw;
    font-weight: bolder;
    padding: inherit;
    margin-bottom: 20px;
    border-bottom: 5px solid rgb(114, 126, 119);
}

.FieldsContainer {
    margin: auto;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.FieldTitles{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    margin: auto;
}

.FieldTitles div {
    font-size: 2vw;
    font-weight: bold;
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.FieldInputs {
    width: 70%;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: auto;
}

.FieldInputs input,
.FieldInputs select {
    font-size: 2vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.FieldInputs select {
    text-overflow: ellipsis;
}

.FieldInputs input[type='checkbox'] {
    -webkit-appearance: none;
    width: 2vw;
    height: 2vw;
    background: white;
    border-radius: 5px;
    border: 2px solid #555;
    margin-top: 5vh;
    margin-bottom: 5vh;
}
.FieldInputs input[type='checkbox']:checked {
    background: rgb(91, 145, 255);
}

@media (max-width: 600px) {
    .BotonResultCont {
        margin:  1% auto;
        height: 10%;
        vertical-align: baseline;
        align-content: center;
    }
}
/*
@media (min-width: 1300px) {*/