viabilidade/public/style.css

190 lines
3.0 KiB
CSS

@charset "UTF-8";
.header__container {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #234164;
width: 100%;
padding: 20px 125px 25px 125px;
margin-bottom: 50px;
}
.header-title__container > h1 {
color: white;
margin: 0px !important;
font-size: 30px;
}
.p-4 {
padding: 0px !important;
}
.description__container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 1rem;
}
.description-title {
margin-bottom: 15px;
}
.description-content > p {
text-align: center;
}
.card-results__container{
margin-top: 50px;
display: none;
}
.card-results__container .card{
margin-top: 5px;
min-height: 80px;
justify-content: center;
}
.card-content {
display: flex;
align-items: center;
height: 80px;
}
.card-content-label {
display: flex;
align-items: center;
border-right: 1px solid gray;
padding: 1rem;
width: 60%;
height: 100%;
}
.card-content-result {
padding: 1rem;
display: flex;
justify-content: center;
width: 40%;
height: 100%;
}
.viavel {
font-weight: bold;
color: #234164;
}
.inviavel {
font-weight: bold;
color: #d40000;
}
a {
text-decoration: none;
}
button {
background-color: #31a3b5 !important;
border: none !important;
}
button:hover {
background-color: #298897 !important;
}
.progress-bar {
background-color: #31a3b5 !important;
}
.card {
margin-top: 40px;
}
.call__container {
margin-top: 50px;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.call-text > p {
text-align: center;
}
.call-button__container {
display: flex;
justify-content: center;
align-items: center;
padding: 0.5rem 1rem;
background-color: #25D366;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
margin-top: 15px;
}
.call-button-phone {
margin-left: 10px;
}
.call-button-phone > span {
color: white;
font-weight: bold;
}
.call__container {
margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
.header__container {
padding-left: 20px;
padding-right: 20px;
}
.header-title__container > h1{
font-size: 16px;
}
.header-logo__container > img {
width: 80px;
}
}
@media screen and (min-width: 768px) {
body > div.container > div.card > div > div.row.g-2.card-body-input__container > div:nth-child(3){
display: flex;
align-items: flex-end ;
margin-top: 0px;
}
.description__container {
align-items: flex-start;
padding-left: 0px;
}
.description-content {
width: 50%;
}
.description-content > p {
text-align: left;
}
.call-text {
width: 50%;
}
.card-results__container .card {
min-height: fit-content;
}
.card-content {
height: fit-content;
}
}