blob: 5a8edb257bbcd9e9d3c83162619d44b28befe075 (
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
|
@media only screen and (min-width: 700px) {
body {
font-size: 1.25em;
}
section {
padding-top: 2em;
padding-bottom: 2em;
padding-left: 15em;
padding-right: 15em;
}
nav {
margin: 0;
padding: 0;
top: 0;
}
div.buttons {
flex-direction: row;
justify-content: center;
}
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;
}
.logo img {
width: 15%;
display: block;
margin-left: auto;
margin-right: auto;
}
.card {
padding: 1em;
}
section.cards {
margin-left: 25%;
margin-right: 25%;
}
}
|