46 lines
848 B
CSS
46 lines
848 B
CSS
input[type="text"],
|
|
input[type="email"],
|
|
textarea {
|
|
unicode-bidi:bidi-override;/*for normal keyboards*/
|
|
direction: RTL;
|
|
}
|
|
.our-features-elements {
|
|
text-align: right;
|
|
}
|
|
.tilter-caption {
|
|
text-align: right;
|
|
}
|
|
.grid figure figcaption {
|
|
text-align: right;
|
|
}
|
|
.section-title-contact-us {
|
|
text-align: right;
|
|
}
|
|
.contact-us {
|
|
padding-right: 0;
|
|
}
|
|
.contact-us-wrapper {
|
|
flex-direction: row-reverse;
|
|
}
|
|
.contact-us .textfield-col {
|
|
padding-right: 0;
|
|
padding-left: 15px;
|
|
}
|
|
.contact-us-elements {
|
|
text-align: right;
|
|
}
|
|
@media (max-width: 767px) {
|
|
.contact-us {
|
|
padding-right: 15px;
|
|
}
|
|
.section-title-contact-us {
|
|
text-align: center;
|
|
}
|
|
.contact-us-wrapper {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-flex-direction: column;
|
|
-moz-box-orient: vertical;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
}
|
|
} |