-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathscreen.twocol.css
108 lines (92 loc) · 1.67 KB
/
screen.twocol.css
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
background-color: #fff;
font-family: 'CMU Serif', serif;
margin: 20px auto;
}
.twocol {
column-count: 2;
column-gap: 20px;
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
}
.title_page h1 {
width: 740px;
text-align: center;
font-weight: normal;
font-size: 18pt;
font-family: sans-serif;
}
.title_page {
width: 740px;
}
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
font-weight: normal;
font-variant: sans-serif;
text-transform: uppercase;
}
.title_page_meta h3 {
font-weight: bold;
margin: 0;
font-family: serif;
font-size: 1em;
}
.title_page_meta .abstract h3 {
font-weight: normal;
text-transform: uppercase;
}
.title_page_meta p {
display: inline;
}
.author {
text-align: center;
padding: 10px 0 30px 0;
font-family: sans-serif;
font-size: 11pt;
}
.author em {
font-size: 13pt;
font-weight: normal;
font-style: normal;
}
.author p {
display: inline-block;
width: 200px;
padding: 10px;
white-space: pre;
vertical-align: top;
}
.title_page_meta .details {
padding-bottom: 30px;
}
.table_of_contents {
display: none;
}
pre code {
padding: 0;
display: block;
font-family: 'CMU Typewriter Text', monospace;
}
@media screen {
html {
background-color: #555;
}
body {
width: 740px;
padding: 90px 40px;
box-shadow: 0px 3px 8px #000;
-moz-box-shadow: 0px 3px 8px #000;
-webkit-box-shadow: 0px 3px 8px #000;
}
}
@media print {
body {
padding: 0 0 0 0;
width: 740px;
}
}