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 139 140 141 142 143 144 145 146
|
/* cb2Bib Annote CSS */
/* general */
body {
background-color: #E7E7E7;
border-color: #72726A;
border-style: solid;
border-width: 1px;
color: black;
margin: 1px;
padding-left: 25px;
padding-right: 25px;
padding-top: 25px;
}
h1 {
background-color: #010141;
border-color: black;
border-style: solid;
border-width: 1px;
color: #E3E3E3;
font-family: sans-serif;
font-size: 120%;
padding-left: 10px;
}
h2 {
color: #010141;
font-family: sans-serif;
font-size: 110%;
padding-left: 10px;
}
h3 {
color: #010141;
font-family: sans-serif;
font-size: 100%;
font-style: italic;
padding-left: 10px;
}
a {
color: #293747;
font-size: 100%;
text-decoration: underline;
}
p {
padding-right: 20px;
text-indent: 20px;
}
pre {
background-color: #DBDBDB;
border-color: #72726A;
border-style: solid;
border-width: 1px;
font-family: monospace;
font-size: 80%;
padding: 10px;
}
ul li {
list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAJCAYAAADkZNYtAAAABGdBTUEAANbY1E9YMgAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9gMCBQ5B7ky4rkAAAFHSURBVBjTTcoxasJQAIDhPy8JlfCKGpe+LIUuQhAnN0FEikcodOvSnqCLV+lYEA/QCi4GnERyhE5FsGoCDgZ9oMnr0pZ+8G+/xQ+lVLXVaj31+/378/lsOY5jJpPJaDabvWRZtuMfv9PpjKIoMkmSmDRNzXa7NdPp1LTb7RHgA9iACILgcTAYPFerVbTWaK3Z7XbkeU69Xm/M5/OvLMtiAbjNZvPO8zy01uz3+7+01nieR6PRuANcB3CVUje1Wg0pJa7rYts2eZ5zOp0olUoEQXDzO4skSVa+719JKXPLsizbtjHGACCEEJvNZgUIARSLxWK8Xq+RUtrlcllIKUWlUhFSSrFcLonjeAwUABdA2O12J3Ecm8PhYLTW5ng8miiKTBiGb0AIXFiAAC6VUqHv+w+9Xu/WcZzroig+h8Phe5qmr8AHkH0DzH6Pqv7Vyi4AAAAASUVORK5CYII=);
padding-right: 100px;
text-indent: 15px;
}
/* header */
.header {
vertical-align: middle;
}
/* footer */
.footer {
color: black;
font-family: arial, sans-serif;
font-size: 50%;
}
.footer td {
padding: 10px;
padding-left: 5px;
padding-right: 5px;
}
.footer a {
color: #293747;
font-weight: bold;
text-decoration: underline;
}
/* index */
.index {
background-color: #DBDBDB;
border-color: #72726A;
border-style: solid;
border-width: 1px;
font-family: sans-serif;
font-size: 80%;
}
.index a {
color: #293747;
font-weight: bold;
text-decoration: none;
}
.index a:hover {
color: #010141;
font-weight: bold;
text-decoration: none;
}
.index ul li {
list-style-image: none;
}
/* abstract */
#abstract {
background-color: #DBDBDB;
border-color: #72726A;
border-style: solid;
border-width: 1px;
font-size: 95%;
font-style: italic;
padding-bottom: 10px;
padding-left: 50px;
padding-right: 70px;
padding-top: 10px;
text-indent: 20px;
}
/* citations */
.citations {
font-size: 80%;
}
.citations a {
text-decoration: none;
}
.citations a:active {
color: #010141;
text-decoration: none;
}
/* references */
.references {
font-size: 80%;
font-family: sans-serif;
padding-right: 50px;
}
.references a {
color: black;
text-decoration: none;
}
.references a:link {
color: #293747;
font-weight: bold;
text-decoration: none;
}
.references a:visited {
color: #293747;
font-weight: bold;
text-decoration: none;
}
|