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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/* Cover Page styles */
html {
height: 260mm;
}
body.cover {
height: 100%;
background-color: white;
padding: 0px;
font-family: "overpass", sans-serif;
font-weight:300;
font-size: 14px;
margin: 0 auto;
max-width: 100%;
}
body.cover > div {
height: 100%;
}
body.cover * {
text-align: left;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
body.cover div.logo {
height: 30%;
background-position: 50% 0%;
margin-top: 15mm;
background-image: url(../images/title_logo.svg);
background-repeat: no-repeat;
}
body.cover div.leader {
display: inline-block;
font-size: 40px;
font-weight: 600;
margin-top: 2em;
}
body.cover div.product {
display: inline;
}
body.cover div.version {
display: inline;
}
body.cover div.docname {
font-size: 40px;
font-weight: 600;
min-height: 10%;
line-height: 40px;
}
body.cover div.subtitle {
height: 20%;
font-weight:300;
font-size: 20px;
color: black;
border-top: .1em solid black;
padding-top: 40px;
margin-top: 40px;
margin-bottom: 0px;
}
body.cover div.authors {
}
body.cover div.author {
float: left;
min-width: 33%;
font-weight: 300;
font-size: 20px;
}
div.draft {
background-image: url(../images/watermark-draft.png);
background-repeat: repeat-y;
background-position: center;
}
.titlepages {
page-break-before: always;
text-align: left;
}
.titlepages > div {
height: 100%;
}
.titlepages .legalnotice {
page-break-before: always;
}
.titlepages .title {
font-size: 20px;
color: black;
font-weight: normal;
margin-bottom: 0.1em;
}
.titlepages .subtitle {
color: black;
font-weight: normal;
text-align: left;
font-size: 12px;
margin-top: 0.1em;
margin-bottom: 2em;
}
.titlepages .contributor {
margin-bottom: 1em;
font-size: 12px;
}
.titlepages .abstract {
page-break-before: avoid !important;
font-size: 14px;
}
.titlepages h1 {
color: black;
font-size: 14px;
font-weight: normal;
}
.titlepages .editors h1,
.titlepages .othercredit h1,
.titlepages .legalnotice h1,
.titlepages .keywords h1,
.titlepages .abstract h1 {
font-weight: bold;
}
|