blob: 52779806afbcbedeadad9bb22ec56802b4e163eb (
plain)
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
|
body {
font-family: "sans-serif";
}
figcaption {
text-align: center;
font-size: 8px;
color: #808080;
}
figure {
display: inline-block;
}
h2 {
margin: 25px 0px 3px 0px;
}
div.date {
font-size: 8px;
color: #808080;
margin: 0px 0px 10px 0px;
}
div.impressum {
margin: 500px 0px 0px 0px;
}
.citation {
font-style:italic;
margin-left: 50px;
margin-right: 50px;
}
.reference {
text-align: right;
margin-bottom: 30px;
}
.mobile {
width: 300px;
border-width: 80px 15px 80px 15px;
border-style: solid;
border-radius: 30px;
border-color: #000000;
}
.logo {
display: block;
margin: 0 auto;
}
.screenshot {
width: 400px;
border: 2px solid;
border-color: #8888AA;
}
img.banner {
vertical-align: -5px;
}
@media only screen and (min-width: 1px) and (max-width: 630px) {
}
@media only screen and (min-width: 631px) and (max-width: 950px) {
}
@media only screen and (min-width: 951px) {
div.page {
max-width: 950px;
width: 100%;
margin: 0 auto;
}
}
|