blob: 1b0eb432153abc546a881b8553c139816b6079bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
@media only screen and (min-width: 700px) {
section {
padding: 3em;
}
nav {
flex-direction: row-reverse;
margin: 0;
padding: 0;
top: 0;
position: fixed;
width: 100%;
}
div.buttons {
flex-direction: row-reverse;
}
.banner {
padding-top: 7em;
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: 0.5em;
}
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;
}
.card {
padding: 2em;
}
#reviews .card,
#offerings .card {
display: block;
flex: none;
width: 20%;
}
.modal .card {
width: 25%;
}
}
|