Marc Kupietz | a927057 | 2018-03-17 15:17:07 +0100 | [diff] [blame] | 1 | body, input { |
| 2 | font-family: Lato, sans-serif; |
| 3 | font-size: 11pt; |
| 4 | } |
| 5 | |
| 6 | .info { |
| 7 | font-size: 8pt; |
| 8 | margin-top: 4px; |
| 9 | /* position: absolute; |
| 10 | bottom: 0; |
| 11 | left: 0; |
| 12 | right: 0; */ |
| 13 | } |
| 14 | |
| 15 | h1, h2, h3 { |
| 16 | margin: 5px 10px 0 0; |
| 17 | color: rgb(246,168,0); |
| 18 | font-family: "Univers LT Std 47 Cn Lt", "Univers LT Std 67 Cn Lt", "Roboto Condensed", "Univers LT Std 67 Cn Bold", "UniversLTStd-BoldCn", "Times", 'League Gothic', Impact, sans-serif; |
| 19 | font-weight: bold; |
| 20 | line-height: 1.35; |
| 21 | letter-spacing: normal; |
| 22 | text-transform: uppercase; |
| 23 | text-shadow: none; |
| 24 | word-wrap: break-word; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | showoptions, #SEARCH { |
| 29 | margin-left: 10px; |
| 30 | margin-right: 10px; |
| 31 | } |
| 32 | |
| 33 | .tabs-left-vertical .ui-tabs-nav { |
| 34 | position: absolute; |
| 35 | width: 21em; |
| 36 | transform: translate(-100%,0%) rotate(-90deg); |
| 37 | transform-origin: 100% 0%; |
| 38 | } |
| 39 | |
| 40 | .tabs-left-vertical .ui-tabs-nav li { |
| 41 | float: right; |
| 42 | } |
| 43 | |
| 44 | .tabs-left-vertical .ui-tabs-panel { |
| 45 | padding-left: 3.5em; |
| 46 | } |
| 47 | |
| 48 | .tabs-left-vertical .ui-tabs-panel { |
| 49 | height: 20em; |
| 50 | } |
| 51 | |
| 52 | .mono { |
| 53 | font-family: "DejaVu Sans Mono", Inconsolata, SourceCodePro, "Courier New", Courier, monospace; |
| 54 | } |
| 55 | |
| 56 | .ui-tooltip-content { |
| 57 | font-size: 10pt; |
| 58 | color: #222222; |
| 59 | } |
| 60 | |
| 61 | svg > .ui-tooltip-content { |
| 62 | font-size: 8pt; |
| 63 | color: #222222; |
| 64 | } |
| 65 | |
| 66 | a.merged { |
| 67 | color: green; |
| 68 | fill: green; |
| 69 | } |
| 70 | |
Marc Kupietz | b347c9a | 2018-03-19 16:47:10 +0100 | [diff] [blame] | 71 | #first a, .paradigmator a { |
Marc Kupietz | a927057 | 2018-03-17 15:17:07 +0100 | [diff] [blame] | 72 | text-decoration: none; |
| 73 | } |
| 74 | |
| 75 | a.marked, #first a.marked { |
| 76 | text-decoration: underline; |
| 77 | } |
| 78 | |
| 79 | a.target { |
Marc Kupietz | 2e2e4db | 2018-12-21 15:07:37 +0100 | [diff] [blame] | 80 | font-weight: bold; |
Marc Kupietz | a927057 | 2018-03-17 15:17:07 +0100 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | table.display { |
| 84 | width: 40% important!; |
| 85 | margin: 1; /* <- works for me this way ****/ |
| 86 | } |
| 87 | |
| 88 | table.dataTable thead th, table.dataTable thead td, table.dataTable tbody td { |
| 89 | padding: 2px 2px; |
| 90 | // border-bottom: 1px solid #111; |
| 91 | } |
| 92 | |
| 93 | g.u a, g.tsnet a, td.collocator { |
| 94 | cursor: pointer; |
| 95 | } |
| 96 | |
| 97 | #collocators { |
| 98 | margin-bottom: 15px; |
| 99 | } |
| 100 | |
| 101 | #header { |
| 102 | width: 100%; |
| 103 | // border: 1px solid red; |
| 104 | overflow: hidden; /* will contain if #first is longer than #second */ |
| 105 | } |
| 106 | |
| 107 | #topwrapper { |
| 108 | width: 100%; |
| 109 | display: flex; |
| 110 | // border: 1px solid red; |
| 111 | } |
| 112 | |
| 113 | #wrapper { |
| 114 | width: 100%; |
| 115 | display: flex; |
| 116 | flex-wrap: wrap; |
| 117 | padding:5px; |
| 118 | // border: 1px solid green; |
| 119 | // border: 1px solid red; |
| 120 | // overflow: hidden; /* will contain if #first is longer than #second */ |
| 121 | } |
| 122 | |
| 123 | #pagetitle { |
| 124 | max-width: 460px; |
| 125 | margin-right: 20px; |
| 126 | float: left; |
| 127 | overflow: hidden; /* if you don't want #second to wrap below #first */ |
| 128 | // border: 1px solid green; |
| 129 | } |
| 130 | |
| 131 | #options { |
| 132 | float: left; |
| 133 | width: 800px; |
| 134 | margin: 10px; |
| 135 | overflow: hidden; /* if you don't want #second to wrap below #first */ |
| 136 | } |
| 137 | |
| 138 | #word { |
| 139 | width: 50%; |
| 140 | } |
| 141 | |
| 142 | #first { |
Marc Kupietz | b347c9a | 2018-03-19 16:47:10 +0100 | [diff] [blame] | 143 | margin-right: 10px; |
Marc Kupietz | a927057 | 2018-03-17 15:17:07 +0100 | [diff] [blame] | 144 | float: left; |
| 145 | overflow: hidden; /* if you don't want #second to wrap below #first */ |
| 146 | // border: 1px solid green; |
| 147 | } |
| 148 | #tabs { |
| 149 | margin-right: 20px; |
| 150 | overflow: hidden; /* if you don't want #second to wrap below #first */ |
| 151 | } |
| 152 | |
| 153 | .tabs-min { |
| 154 | background: transparent; |
| 155 | border: none; |
| 156 | } |
| 157 | |
| 158 | .tabs-min .ui-widget-header { |
| 159 | background: transparent; |
| 160 | border: none; |
| 161 | border-bottom: 1px solid #c0c0c0; |
| 162 | -moz-border-radius: 0px; |
| 163 | -webkit-border-radius: 0px; |
| 164 | border-radius: 0px; |
| 165 | } |
| 166 | |
| 167 | .tabs-min .ui-tabs-nav .ui-state-default { |
| 168 | background: transparent; |
| 169 | border: none; |
| 170 | } |
| 171 | |
| 172 | .tabs-min .ui-tabs-nav .ui-state-active { |
| 173 | background: transparent url(/derekovecs/img/uiTabsArrow.png) no-repeat bottom center; |
| 174 | border: none; |
| 175 | } |
| 176 | |
| 177 | .tabs-min .ui-tabs-nav .ui-state-default a { |
| 178 | color: #c0c0c0; |
| 179 | } |
| 180 | |
| 181 | .tabs-min .ui-tabs-nav .ui-state-active a { |
| 182 | color: rgb(246,168,0); |
| 183 | } |
| 184 | |
| 185 | #embed { |
| 186 | max-width: 802px; |
| 187 | border: 1px solid #333; |
| 188 | } |
| 189 | |
| 190 | #second { |
| 191 | min-width: 700px; |
| 192 | // border: 1px solid #333; |
| 193 | overflow: hidden; /* if you don't want #second to wrap below #first */ |
| 194 | } |
| 195 | #som2 svg { |
| 196 | border: 1px solid #333; |
| 197 | } |
| 198 | |
| 199 | #cost { |
| 200 | font-size: 8pt; |
Marc Kupietz | b347c9a | 2018-03-19 16:47:10 +0100 | [diff] [blame] | 201 | float: right; |
| 202 | text-aligh: right; |
Marc Kupietz | a927057 | 2018-03-17 15:17:07 +0100 | [diff] [blame] | 203 | color: #222222; |
| 204 | margin-top: 4px; |
| 205 | margin-bottom: 12px; |
| 206 | } |
| 207 | |
| 208 | #sominfo1, #sominfo { |
| 209 | font-size: 8pt; |
| 210 | color: #222222; |
| 211 | margin-top: 0px; |
| 212 | } |
| 213 | |
| 214 | #somcolor1, #somcolor2, #somcolor3 { |
| 215 | display: inline-block; |
| 216 | height: 10px; |
| 217 | width: 10px; |
| 218 | } |
| 219 | |
| 220 | #third { |
| 221 | border: 1px solid #333; |
| 222 | } |
| 223 | |
| 224 | th { |
| 225 | color: rgb(246,168,0); |
| 226 | font-family: "Univers LT Std 47 Cn Lt", "Univers LT Std 67 Cn Lt", "Roboto Condensed", "Univers LT Std 67 Cn Bold", "UniversLTStd-BoldCn", "Times", 'League Gothic', Impact, sans-serif; |
| 227 | } |
| 228 | |
| 229 | p.citation { |
| 230 | font-size: 8pt; |
| 231 | color: #999999; |
| 232 | } |