-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.css
More file actions
61 lines (60 loc) · 917 Bytes
/
screen.css
File metadata and controls
61 lines (60 loc) · 917 Bytes
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
@media screen {
body {
margin: 40px 4cm 0 8cm;
}
header:before {
content: var(--logotype-front);
position: fixed;
left: 0;
top: 0;
width: 8cm;
text-align: center;
padding: 2cm 0 2cm 0;
}
nav {
position: fixed;
left: 1cm;
width: 6cm;
margin-top: 3cm;
text-align: center;
padding: 2cm 0 2cm 0;
font-size: 9pt;
}
nav > h1 {
display: none;
}
nav li > a:hover {
text-decoration: underline;
}
body:after {
position: fixed;
height: 100px;
width:100%;
top: 100%;
left: 0cm;
width: 8cm;
margin-top:-30px;
text-align: center;
padding:5px;
font-family:"PT Sans", "Verdana", sans-serif;
font-weight: normal;
font-size: 10px;
content: var(--copyright);
}
span.footnote:before {
content: " (";
}
span.footnote:after {
content: ") ";
}
aside {
display: inline;
float: right;
clear: right;
margin-right: -41%;
margin-bottom: 1em;
width: 37%;
text-align: left;
page-break-inside: avoid;
}
}