ArmadoDeForm.css 3.26 KB

html {
    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 {
    min-height: 40px;
    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: 10px 10px 0px 0px;
    background-color: rgb(168, 168, 168);
    border: none;
    border-bottom: 2px solid rgb(120, 120, 120);
    height: 100%;
}

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

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

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

.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;
    position: relative;
}

.TabTitle {
    text-align: center;
    font-size: 50px;
    font-weight: bolder;
    padding: inherit;
    margin-bottom: 20px;
    border-bottom: 3px solid rgb(120, 120, 120);
}

.FieldsContainer {
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
}

.Field {
    display: flex;
    justify-content: space-between;
}

.FieldTitle {
    width: 20%;
    text-align: center;
    margin: auto;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-top: 50;
    margin-bottom: 50;
}

.FieldInput {
    width: 70%;
    text-align: center;
    font-weight: bold;
    margin: auto;
}

.FieldInput input,
.FieldInput select {
    width: 70%;
    font-size: 20px;
    margin-top: 50;
    margin-bottom: 50;
}

.FieldInput select {
    text-overflow: ellipsis;
}

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

.Other {
    display: none;
    margin-top: 20 !important;
    margin-bottom: 20 !important;
    margin: auto;
}

.Checkbox {
    width: 46%;
    float: left;
    padding: 1%;
}

.Checkbox div {
    width: 50%;
    float: left;
    vertical-align: middle;
    line-height: 30px;
}

.Checkbox input[type="checkbox"] {
    margin-top: 0;
    margin-bottom: 0;
}

.CheckboxTitle {
    font-size: 20px;
}

.Separator {
    width: 85%;
    margin: auto;
}

.SendButton {
    position: absolute;
    bottom: 5%;
    left: 42%;
    width: 16%;
    height: 30px;
    font-size: 15px;
    background-color: white;
    border-radius: 2px;
    border: 2px solid var(--Color);
}

.Required {
    font-weight: bold;
    color: red;
}

@media (max-width: 500px) {

    .Checkbox {
        width: 98%;
    }
}
/*
@media (min-width: 1300px) {*/