-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkimgpage.css
108 lines (87 loc) · 1.78 KB
/
mkimgpage.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
/*
Copyright 2016--2018, Raphael Reitzig
mkimgpage is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
mkimgpage is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with mkimgpage. If not, see <http://www.gnu.org/licenses/>.
*/
<style type="text/css">
/* Supress title from pandoc */
h1.title, h2.author, h3.date {
display : none;
}
body {
font-family : Sans-Serif;
color : #2A2A5A;
width : 900px;
margin : 20px auto 20px auto;
border : 1px #CCCCFF outset;
border-radius : 4px;
padding : 15px;
background-color : #CCCCCC;
}
h1 {
margin-top: 40px;
}
h2 {
margin-top: 30px;
}
h3 {
margin-top: 20px;
}
a {
color : #2A2A5A;
}
a:hover {
text-decoration : none;
}
li {
margin : 0.5ex 0 0.5ex 0;
}
div.banner {
text-align : center;
margin : 0 0 -10px 0;
padding : 0;
width : 100%;
}
div.banner img {
border : 1px #CCCCFF solid;
}
a.imglink img {
border : 1px #2A2A5A solid;
border-radius : 2px;
padding : 2px;
}
a.imglink img:hover {
opacity : 0.5;
}
div.footer {
font-size : 8pt;
color : #1A1A4A;
opacity : 0.7;
width : 50%;
margin : 1cm auto 0 auto;
}
p.license {
text-align : center;
}
div.created_with {
font-size : 8pt;
color : #1A1A4A;
opacity : 0.5;
margin-top : 1cm;
width : 50%;
margin : 1cm auto 0 auto;
text-align : center;
}
div.created_with a {
color : #1A1A4A;
text-decoration : none;
}
</style>