blob: 16360c359193dac109d52d33dac6abc133c2558c (
plain) (
tree)
|
|
@media only screen and (min-width: 800px) {
section {
padding: 3em;
}
nav {
flex-direction: row-reverse;
margin: 0;
padding: 0;
}
div.buttons {
flex-direction: row-reverse;
}
.banner {
text-align: right;
background: linear-gradient(
to right,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 50%
);
}
form {
margin-right: 10%;
margin-left: 10%;
}
table td,
table th {
padding: 1em;
}
section.flexible {
flex-direction: row;
}
section.flexible div,
section.flexible figure {
flex-basis: 0;
}
section.flexible div {
flex-grow: 2;
}
section.flexible figure {
flex-grow: 1;
}
.signature img {
width: 30%;
}
.logo img {
width: 15%;
display: block;
margin-left: auto;
margin-right: auto;
}
#offerings .card {
display: block;
flex: none;
width: 20%;
}
.modal .card {
width: 25%;
}
}
|