s4

annotate examples/common/default/default.css @ 987:e71a86651d72

Table in GrpAction page contains userid(localpart) for summary
author HIROSE Yuuji <yuuji@gentei.org>
date Sun, 31 Jul 2022 15:26:18 +0900
parents b327b5691b59
children f73eece61ee4
rev   line source
yuuji@6 1 /*
yuuji@6 2 * Default CSS definitions
yuuji@6 3 */
yuuji@259 4 body {background: #eff; margin: 2px; padding: 6px;}
yuuji@221 5 h2, h3, hr {clear: both;}
yuuji@116 6 *.warn {color: red;}
yuuji@898 7 *.warnbg {background: red;}
yuuji@898 8 *.hidden {visibility: hidden;}
yuuji@898 9 *.border {border: 1px solid #113;}
yuuji@6 10 div.topmenu {
yuuji@6 11 margin: 0; padding: 0; width: 100%; height: 2em;
yuuji@6 12 }
yuuji@556 13 div.topmenu ul {width: 100%; position: fixed; z-index: 5; margin: 0;
yuuji@6 14 margin: 0 auto;}
yuuji@6 15 div.topmenu ul li {
yuuji@6 16 float: left; width: 18%;
yuuji@6 17 background: rgba(68,255,102,0.8); border: #3e5 2px groove; margin: 0;
yuuji@6 18 text-align: center; font-size: 80%; list-style: none;
yuuji@6 19 box-shadow: #242 2px 3px 5px;
yuuji@6 20 text-shadow: #fff 0px 0px 10px;
yuuji@6 21 }
yuuji@791 22 div.topmenu ul li.worldname {background: #eeeeff;}
yuuji@6 23 div.topmenu ul li:hover {background: #8fa;}
yuuji@6 24 div.topmenu ul a {text-decoration: none;}
yuuji@6 25
yuuji@6 26 ldiv.topmenu + h1 {clear: both; margin-top: 3em;}
yuuji@369 27 pre.list {
yuuji@369 28 overflow: auto; width: 96%; height: 40%; background: white;
yuuji@369 29 border: 2px inset;
yuuji@369 30 }
yuuji@369 31 p.copyright {
yuuji@377 32 border-top: 2px inset #555; text-align: right; clear: both;
yuuji@369 33 font-size: 50%;
yuuji@369 34 }
yuuji@900 35 p.copyright a, a#reload {text-decoration: none;}
yuuji@6 36
yuuji@6 37 td {padding-left: 0.5ex; padding-right: 0.5ex;}
yuuji@6 38 table.td2r td:nth-child(2) {text-align: right;}
yuuji@6 39 table.td3r td:nth-child(3) {text-align: right;}
yuuji@369 40 table.td3rr td:nth-child(n+3) {text-align: right;}
yuuji@898 41 table.td3evw th:nth-child(2n+4), span.textdigest {
yuuji@898 42 background: white;
yuuji@898 43 }
yuuji@987 44 table.td4r td:nth-child(4) {text-align: right;}
yuuji@659 45 table.thl th {text-align: left;}
yuuji@659 46 span#reverse {background: white; padding: 0 0 0 0.4ex; border: outset;}
yuuji@252 47
yuuji@6 48 table.form, table.b, table.b tr, table.b td, table.b th {
yuuji@6 49 border: 1px solid black; border-collapse: collapse;
yuuji@6 50 }
yuuji@185 51 table.b, table.bloghead {
yuuji@185 52 border-radius: 1ex; box-shadow: rgb(250,222,222) 1px 2px 3px;
yuuji@185 53 }
yuuji@6 54 td.warn {background: #fcc;}
yuuji@6 55 input[type="checkbox"][name="rm"]:checked ~ table {background: red;}
yuuji@6 56 input[type="checkbox"][name="rm"] ~ span {display: none;}
yuuji@6 57 input[type="checkbox"][name="rm"]:checked ~ span {display: inline;}
yuuji@6 58
yuuji@6 59 input[type="radio"][value="replace"] + input.replace[type="file"] {
yuuji@6 60 visibility: hidden;}
yuuji@6 61 input[type="radio"][value="replace"]:checked + input.replace[type="file"] {
yuuji@6 62 visibility: visible;
yuuji@6 63 }
yuuji@837 64 button#morefile {visibility: hidden; background: #fe9;}
yuuji@153 65 label.admin span {border-bottom: 1px solid blue;}
yuuji@153 66 label.admin:after {content: "(ADMIN)"; color: red; text-decoration: none;}
yuuji@6 67
yuuji@6 68 /* keep/edit/rm action selector */
yuuji@6 69 input.action ~ input:not(.action), input.action ~ textarea {
yuuji@6 70 display: none;
yuuji@6 71 }
yuuji@836 72 input.action[value="edit"]:checked ~ input[class="edit"],
yuuji@836 73 input.action[value="mv"]:checked ~ input[type="text"] {display: inline;}
yuuji@6 74 input.action[value="edit"]:checked ~ textarea {display: block;}
yuuji@836 75 input.action[value="edit"]:checked ~ span,
yuuji@836 76 input.action[value="mv"]:checked ~ span {display: none;}
yuuji@6 77 input.action[value="rm"]:checked ~ span {background: red;}
yuuji@6 78 label.confirm {display: none;}
yuuji@842 79 *.inline,
yuuji@6 80 input.action[value="rm"]:checked ~ label.confirm {
yuuji@6 81 display: inline;
yuuji@6 82 }
yuuji@836 83
yuuji@451 84 input.hidesub ~ input[type="submit"] {visibility: hidden;}
yuuji@451 85 input.hidesub:focus ~ input[type="submit"],
yuuji@451 86 p:active input[type="submit"]
yuuji@451 87 {visibility: visible;}
yuuji@451 88 input[type=text]:focus {background: #ffa;}
yuuji@6 89
yuuji@241 90 form.replyblog {xxx-margin-bottom: 40%;}
yuuji@6 91 div.blogcomment {
yuuji@6 92 position: fixed; bottom: 0; left: 0;
yuuji@193 93 z-index: 2; background-color: rgba(250,222,222,0.6);
yuuji@6 94 }
yuuji@211 95 /* div.blogcomment textarea:focus {background: yellow;
yuuji@211 96 position: fixed; top: 0; bottom: auto; } Need to consider narrow display */
yuuji@6 97 div.blogcomment * {opacity: 1.0;}
yuuji@6 98 table.bloghead, .bloghead tr, .bloghead td {
yuuji@6 99 border: 1px solid black; border-collapse: collapse;
yuuji@6 100 min-width: 30em;
yuuji@6 101 }
yuuji@293 102 table.bloghead tr.preface {
yuuji@634 103 font-size: 150%; background: yellow; /* text-align: center; */
yuuji@290 104 white-space: pre-wrap;
yuuji@6 105 }
yuuji@644 106 table.bloghead tr.frozen {
yuuji@644 107 background: #ccf; border: blue thick solid; color: navy;
yuuji@644 108 }
yuuji@397 109
yuuji@6 110 table.bloghead {margin-bottom: 1em;}
yuuji@6 111
yuuji@6 112 table.blog_replies, .blog_replies tr, .blog_replies td {
yuuji@505 113 border: 1px solid #999; border-collapse: collapse;
yuuji@185 114 white-space: pre-wrap;
yuuji@6 115 }
yuuji@498 116 table.bloghead tr.preface td ul,
yuuji@843 117 table.bloghead tr.preface td ol,
yuuji@871 118 table.bloghead tr.preface h2,
yuuji@871 119 table.bloghead tr.preface h3,
yuuji@871 120 table.bloghead tr.preface h4,
yuuji@871 121 table.bloghead tr.preface h5,
yuuji@871 122 table.bloghead tr.preface h5,
yuuji@496 123 table.blog_replies video,
yuuji@496 124 table.blog_replies iframe,
yuuji@843 125 table.blog_replies ul, .blog_replies tr ul, .blog_replies td ul,
yuuji@843 126 table.blog_replies ol, .blog_replies tr ol, .blog_replies td ol {
yuuji@489 127 text-align: left; white-space: normal; margin: 1ex 0;
yuuji@872 128 }
yuuji@872 129 table.bloghead tr.preface h2,
yuuji@872 130 table.bloghead tr.preface h3,
yuuji@872 131 table.bloghead tr.preface h4,
yuuji@872 132 table.bloghead tr.preface h5,
yuuji@872 133 table.bloghead tr.preface h5
yuuji@872 134 {
yuuji@871 135 display: inline-block;
yuuji@489 136 }
yuuji@322 137 table.blog_replies p.proficon {
yuuji@322 138 float: right; margin: 0 1ex 0 0;
yuuji@322 139 }
yuuji@219 140 table.blog_replies+p.update_link {margin-top: 0; margin-bottom: 14em;}
yuuji@291 141 .blog_replies td.repl {
yuuji@6 142 vertical-align: top; min-width: 30em; height: 3em;
yuuji@185 143 max-width: 50em;
yuuji@6 144 }
yuuji@500 145 .blog_replies td.repl img {max-width: 30%;}
yuuji@427 146 td.repl h2, td.repl h3, td.repl h4 {
yuuji@427 147 display: inline; /* Because td.repl's white space is pre-wrap */
yuuji@459 148 /* text-shadow: blue 0px 1px; */
yuuji@427 149 }
yuuji@591 150 td.repl hr {display: inline-block; width: 95%; color: #cde}
yuuji@584 151 td.repl em {color: #a00; text-decoration: underline; padding-right: 0.3ex;}
yuuji@485 152 td.repl strong {color: white; background: #00a; padding: 0 0.5ex;}
yuuji@458 153 td.repl h2:before {content: "■"; color: #a22;}
yuuji@458 154 td.repl h3:before {content: "◆"; color: #a22;}
yuuji@456 155 td.repl h4:before {content: "○";}
yuuji@960 156 td.repl div.atall {
yuuji@960 157 color: white; background: #66f; padding: 0 0.8ex;
yuuji@960 158 display: inline-block; border-radius: 0.8ex;
yuuji@960 159 }
yuuji@355 160 .blog_replies td.repatt {min-width: 12em;}
yuuji@969 161 .blog_replies td.hideauthor {display: none;}
yuuji@354 162 table.blog_replies iframe {
yuuji@840 163 width: 80%; min-height: 300px; max-width: 50em; max-height: 80vw;
yuuji@251 164 padding: 0; border: 0;
yuuji@251 165 }
yuuji@354 166 table.blog_replies td.new { /* New Article from last visit */
yuuji@287 167 background: white
yuuji@286 168 }
yuuji@291 169 table.mini, table.mini tr, table.mini th, table.mini td {
yuuji@291 170 margin: 0; border-width: 0;
yuuji@291 171 border-collapse: collapse;
yuuji@291 172 vertical-align: top; width: auto; height: 1em;
yuuji@291 173 }
yuuji@564 174 table.mini th {background: #cee;}
yuuji@481 175 table.mini tr {border-bottom: solid 1px #bcc;}
yuuji@294 176 table.mini th, table.mini td {text-align: justify;}
yuuji@583 177 table.mini td, table.mini th {padding: 1px 0.5ex; min-width: 1em;}
yuuji@291 178 table.mini {margin-left: 1em; border-left: 2px solid #686;}
yuuji@898 179 div.pjaxview, div.pjaxview2 {
yuuji@898 180 position: fixed; top: 1ex; left: 0; width: 9vw; height: 9vh;
yuuji@898 181 background: #ffffee; border: 1px double navy; border-radius: 2em;
yuuji@898 182 z-index: 7;
yuuji@898 183 }
yuuji@898 184 div.pjaxview2 {
yuuji@929 185 width: 100vw; height: 98vh; transition: 0.5s;
yuuji@898 186 }
yuuji@898 187 div.pjaxview iframe {
yuuji@898 188 width: 98%; height: 90%; object-fit: scale-down;
yuuji@898 189 }
yuuji@898 190 div.pjaxview p {
yuuji@898 191 padding: 0.5ex; text-align: left; margin: 0 2em;
yuuji@898 192 white-space: nowrap; overflow: hidden;
yuuji@898 193 }
yuuji@898 194 div.pjaxview p button { font-size: large; padding: 0 1em;}
yuuji@898 195 div.pjaxview p button { background: #eeeee0; }
yuuji@898 196 div.pjaxview p button:focus { background: #fffff8; }
yuuji@291 197
yuuji@320 198 /* "visibility: collapse" not working on chromium browser */
yuuji@320 199 div.noprofimg tr.profimg {visibility: collapse; display: none;}
yuuji@319 200 div.noprofimg tr:hover + tr.profimg, div.noprofimg tr:active + tr.profimg,
yuuji@319 201 div.noprofimg tr.profimg:hover, div.noprofimg tr.profimg:active {
yuuji@320 202 visibility: visible; display: table-row;}
yuuji@311 203
yuuji@557 204 /* Used for overlapping image */
yuuji@557 205 img.overlap {position: absolute; top: 40px; left: 50px; z-index: 2;}
yuuji@557 206
yuuji@322 207 /* Used in user's home page */
yuuji@311 208 p.profimg {float: left; max-width: 50%; max-height: 400px;
yuuji@311 209 overflow: hidden; margin: 0 1em 1ex;
yuuji@146 210 padding: 0; border: white 1px solid; box-shadow: 2px 3px 4px
yuuji@146 211 }
yuuji@149 212 p.profimg img {max-width: 400px;}
yuuji@146 213 div.home+* {clear: both;}
yuuji@311 214 body.grouphome p.groupimg {
yuuji@315 215 float: right; margin: 0 1em 1ex;
yuuji@311 216 overflow: hidden;}
yuuji@315 217 body.grouphome p.groupimg img {
yuuji@315 218 max-width: 380px; max-height: 380px;}
yuuji@6 219
yuuji@6 220 div.fold {margin-top: 1em; border-top: 1px solid black; padding-top: 1em;}
yuuji@237 221 div.noborder {border: 0px; margin: 0;}
yuuji@6 222 div.fold > div {
yuuji@32 223 xxdisplay: none; max-height: 80%; overflow: auto;
yuuji@30 224 height: 0px; opacity: 0; padding: 0 1ex;
yuuji@6 225 }
yuuji@59 226 div.fold input[type="checkbox"]:checked ~ div,
yuuji@59 227 div.fold input[type="radio"]:checked ~ div {
yuuji@193 228 display: block; background: #fadede;
yuuji@30 229 height: auto; opacity: 1.0; transition: 1s;
yuuji@30 230 }
yuuji@667 231 input.fold + label + *.folded {opacity: 0; display: none; hight: 0;}
yuuji@667 232 input[type="checkbox"].fold:checked + label + *.folded {
yuuji@659 233 opacity: 1.0; transition: 2s;
yuuji@659 234 }
yuuji@667 235 input[type="checkbox"].fold:checked + label + div.folded {
yuuji@667 236 display: block; hight: auto; transition: 2s;
yuuji@667 237 }
yuuji@260 238
yuuji@260 239 /* fold2!! */
yuuji@260 240 div.foldtabs {
yuuji@289 241 position: relative; height: 5em; margin-top: 1em;
yuuji@260 242 border-top: 1px solid black; padding-top: 1em;
yuuji@260 243 }
yuuji@260 244 div.foldtabs > div {
yuuji@260 245 position: absolute; top: 2.5em; opacity: 0.0; background: pink;
yuuji@369 246 margin: 2px; overflow: auto;
yuuji@260 247 }
yuuji@260 248 div.foldtabs input[type="radio"] {display: none;}
yuuji@260 249 div.foldtabs input[type="radio"]:checked + label + div {
yuuji@260 250 display: block; opacity: 1.0; transition: 0.2s; width: 100%;
yuuji@260 251 margin: 0; z-index: 2;
yuuji@260 252 }
yuuji@260 253 div.foldtabs > label {
yuuji@260 254 border: 1px outset #ddd; background: #ddd; xbackground: pink;
yuuji@260 255 border-top-left-radius: 0.8em; border-top-right-radius: 0.8em;
yuuji@260 256 margin: 0;
yuuji@260 257 padding: 0.2ex 0.5em; height: 3em;
yuuji@260 258 }
yuuji@260 259 div.foldtabs > input:active + label {background: white;}
yuuji@260 260 div.foldtabs input:checked + label {
yuuji@260 261 background: pink; border: pink 1px solid; border-bottom-width: 6px;
yuuji@260 262 }
yuuji@260 263 div.foldtabs input:checked + label:last-of-type {border-width: 1px;}
yuuji@260 264 input[type="checkbox"] + label + input[type="submit"] {display: none;}
yuuji@260 265 input[type="checkbox"]:checked + label + input[type="submit"] {
yuuji@260 266 display: inline;}
yuuji@289 267 div.foldtabs p {margin: 0;}
yuuji@260 268
yuuji@502 269 /* ToDo List CheckBox inspired by https://cultureacademia.jp/webcreate/303/ */
yuuji@502 270 input.s4-checkbox {display: none;} /* Do not show real checkbox */
yuuji@502 271 input.s4-checkbox + label {
yuuji@502 272 position: relative; padding-left: 0.8em; margin-right: 1em;
yuuji@502 273 }
yuuji@502 274 input.s4-checkbox + label:before,
yuuji@502 275 input.s4-checkbox + label:after {
yuuji@502 276 content: ""; display: block; /* Mimic Checkbox by absolute box */
yuuji@502 277 position: absolute; top: 0; left: 0; margin: 0;
yuuji@502 278 }
yuuji@502 279 input.s4-checkbox + label:before { /* checkbox frame */
yuuji@502 280 width: 0.8em; height: 0.8em; border: 1px solid #aaa; border-radius: 20%;
yuuji@504 281 background: #ddd;
yuuji@502 282 }
yuuji@502 283 input.s4-checkbox:checked + label:before { /* checked frame bg */
yuuji@502 284 background: pink;
yuuji@502 285 }
yuuji@502 286 input.s4-checkbox:checked + label { /* checked text */
yuuji@502 287 /* text-shadow: red 1px 1px; */
yuuji@502 288 }
yuuji@502 289 input.s4-checkbox:checked + label:after { /* checked mark */
yuuji@502 290 width: 0.6em; height: 0.4em; top: 0.05em; left: 0.1em;
yuuji@502 291 border-bottom: 3px solid navy;
yuuji@502 292 border-left: 3px solid navy;
yuuji@502 293 transform: rotate(-40deg);
yuuji@502 294 }
yuuji@502 295 /* ---------------------------------------------------- */
yuuji@502 296
yuuji@842 297 div.dumptable {max-height: 70vw; overflow: auto;}
yuuji@296 298 div.dumptable tr:hover {background-color: #fee;}
yuuji@258 299 table.dumpblogs td,
yuuji@258 300 div.lcto td { /* LINK + CTIME + TITLE + OWNER + something... */
yuuji@258 301 white-space: nowrap; overflow: hidden;}
yuuji@258 302 table.dumpblogs td:nth-child(4),
yuuji@258 303 div.lcto td:nth-child(2) {max-width: 8em;}
yuuji@258 304 table.dumpblogs td:nth-child(5), /* team */
yuuji@258 305 table.dumpblogs td:nth-child(6), /* title */
yuuji@397 306 table.dumpblogs td:nth-child(7), /* heading */
yuuji@258 307 div.lcto td:nth-child(3), /* title */
yuuji@258 308 div.lcto td:nth-child(4) /* owner */
yuuji@258 309 {max-width: 14em;}
yuuji@913 310 /* https://curecode.jp/tech/css-table-position-sticky-with-background-border-vanished/ */
yuuji@913 311 div.dumptable table.dumpblogs th {
yuuji@913 312 position: sticky; top: 0; z-index: 0; background: #fcf0f0;
yuuji@913 313 border: 1px solid black; border-collapse: collapse;
yuuji@913 314 background-clip: padding-box;
yuuji@913 315 }
yuuji@258 316
yuuji@397 317 table.dumpblogs tr.凍結 td:nth-child(n+2) {opacity: 0.5;}
yuuji@397 318 table.dumpblogs tr.凍結 td:last-child {opacity: 1.0; color: blue;}
yuuji@397 319 *.frozen, *.凍結 {color: blue;}
yuuji@258 320
yuuji@258 321 /*
yuuji@252 322 table.dumpblogs td:nth-child(4) {
yuuji@256 323 max-width: 7.6em; overflow: hidden;}
yuuji@252 324 table.dumpblogs td:nth-child(5),
yuuji@252 325 table.dumpblogs td:nth-child(6) {
yuuji@256 326 max-width: 12em; overflow: hidden;}
yuuji@252 327 table.dumpblogs td:nth-child(7) {
yuuji@256 328 min-width: 5em; overflow: hidden;}
yuuji@258 329 */
yuuji@6 330
yuuji@6 331 /********************* icon list *********************/
yuuji@6 332 div.iconlist {
yuuji@6 333 text-align: center; float: left; margin: 1ex 1em;
yuuji@6 334 border: dotted #dfd 2px; padding: 1ex;
yuuji@6 335 }
yuuji@6 336 div.iconlist p {margin: 0; padding: 0;}
yuuji@6 337 div.iconlist p.tag {background: #ffa; border-radius: 4em;}
yuuji@19 338 div.iconlist p._temp {background: cyan;}
yuuji@19 339 div.iconlist p._lecture {background: pink;}
yuuji@19 340 div.iconlist p._admin {background: yellow;}
yuuji@19 341 div.iconlist p._friend {background: fuchsia;}
yuuji@23 342 div.iconlist p._fellows {background: #9f9;} /* light green */
yuuji@24 343 div.iconlist p._club {background: #4bb;} /* light teal */
yuuji@23 344 div.iconlist p._event {background: maroon; color: white;}
yuuji@23 345 div.iconlist p._misc {background: purple; color: white;}
yuuji@38 346 div.iconlist p._record {background: red; color: white;}
yuuji@190 347 div.iconlist p._info {background: #eff;} /* light cyan */
yuuji@190 348 div.iconlist p._support {background: #ffe;} /* light yellow */
yuuji@190 349 div.iconlist p._test {background: #ffb6c1;} /* light pink */
yuuji@609 350 input#ismembtn:checked ~ div.iconlist,
yuuji@609 351 input#isadmbtn:checked ~ div.iconlist {display: none;}
yuuji@609 352 input#ismembtn:checked ~ div.iconlist.Member,
yuuji@609 353 input#isadmbtn:checked ~ div.iconlist.ADMIN,
yuuji@609 354 input#ismembtn:checked ~ div.iconlist.ADMIN {display: block;}
yuuji@6 355 div.xy120x120 {min-width: 120px; min-height: 140px;}
yuuji@6 356 div.xy96x96 {min-width: 96px; min-height: 116px;}
yuuji@388 357 div.xy96x96 img {max-width: 96px;}
yuuji@6 358 div.xy50x50 {min-width: 50px; min-height: 70px;}
yuuji@389 359 div.xy50x50 img {max-width: 50px;}
yuuji@259 360 div.moderated {background: rgba(255, 215, 0, 0.3);} /* gold */
yuuji@259 361 body.moderated {background: #fffec4;} /* #faed8a */
yuuji@259 362 body.ismember, div.ismember {border-top: 4px red solid; margin-top: 0;}
yuuji@243 363 div.right, div.search {clear: both; float: right;}
yuuji@234 364 *.clear {clear: both;}
yuuji@243 365 div.search input[type="text"] {
yuuji@243 366 border: solid 1px #bbb; border-radius: 0.5ex; min-height: 20px;
yuuji@243 367 margin: 1em; padding: 0 0.5ex; padding-left: 18px;
yuuji@243 368 background: url("../../img/loupe.png") left center no-repeat
yuuji@243 369 rgba(242,240,240,0.7);
yuuji@352 370 position: relative;
yuuji@352 371 }
yuuji@557 372 div.search div.fr, *.relative {position: relative;}
yuuji@452 373 div.search p.help, textarea + p.help {display: none;}
yuuji@452 374 div.search input:focus + p.help,
yuuji@452 375 textarea:focus + p.help {
yuuji@352 376 display: block; background: white;
yuuji@352 377 position: absolute; right: 15em; white-space: pre;
yuuji@352 378 border: 1px solid #888; border-radius: 1em; padding: 1ex;
yuuji@352 379 box-shadow: #555 2px 2px;
yuuji@243 380 }
yuuji@452 381 textarea:focus + p.help {
yuuji@452 382 position: fixed;
yuuji@452 383 top: 0em; left: 0;
yuuji@452 384 }
yuuji@587 385 form.summary input[type=submit],
yuuji@914 386 input[type="submit"].all, button.all {
yuuji@912 387 background: #cfc; padding: 0.4ex 2ex;
yuuji@912 388 }
yuuji@602 389 input[type="reset"] {margin-left: 4em;}
yuuji@126 390
yuuji@126 391 /*
yuuji@742 392 * World List
yuuji@739 393 */
yuuji@742 394 li.casmenu div {display: none; position: relative; width: 200%;
yuuji@739 395 min-width: 80%; margin-right: 0;}
yuuji@739 396 li.casmenu div table {
yuuji@739 397 background: white; position: absolute; top: 0em; border: 3px solid navy;
yuuji@742 398 max-width: 100%;
yuuji@739 399 }
yuuji@742 400 li.casmenu div table td {text-align: left; padding: 0.5ex 1em;}
yuuji@739 401 li.casmenu:hover div, li.casmenu:active div,
yuuji@739 402 li.casmenu div:hover, li.casmenu div:active
yuuji@739 403 {display: block;}
yuuji@825 404 span.pre {white-space: pre;}
yuuji@739 405
yuuji@739 406 /*
yuuji@889 407 * Frozen toggle button
yuuji@889 408 */
yuuji@889 409 td.稼動状態 {text-align: center;}
yuuji@889 410 button.toggle-frozen {
yuuji@889 411 padding: 0 1emex;
yuuji@889 412 background: #fdb585;
yuuji@891 413 border-radius: 1ex;
yuuji@889 414 border-bottom: solid 2px #d27d88;
yuuji@889 415 box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0,0,0, 0.19);
yuuji@891 416 background: linear-gradient(#fdeaea, #fdb2b2); // ffc8a8
yuuji@889 417 }
yuuji@889 418 .凍結 button.toggle-frozen, .凍結 button.toggle-frozen::before {
yuuji@891 419 background: linear-gradient(#d8e2ea, #83bbea);
yuuji@889 420 }
yuuji@889 421 .凍結 button.toggle-frozen::before {
yuuji@893 422 content: attr(frozen-marker); color: blue;
yuuji@889 423 }
yuuji@889 424 .toggle-frozen::before {
yuuji@893 425 content: attr(running-marker);
yuuji@893 426 }
yuuji@893 427 .info-tooltip {
yuuji@893 428 position: absolute; padding: 1ex;
yuuji@893 429 background: ivory;
yuuji@893 430 border-radius: 1em; border: double 5px blue;
yuuji@893 431 min-width: 10em; right: 0; bottom: 0;
yuuji@893 432 }
yuuji@898 433 .dissolving {opacity: 0; transition: 3.0s;}
yuuji@898 434 .emerging {opacity: 1; transition: 3s;}
yuuji@900 435 button#c, button#reload {display: inline-block;}
yuuji@900 436 span.loading, button#c:disabled, button#reload:disabled {
yuuji@898 437 visibility: visible; transform: rotateX(3600deg); transition: 30s;
yuuji@889 438 }
yuuji@898 439 span.loading {padding: 0 1em;}
yuuji@914 440 input.aux {margin-left: 10em; transform: scale(0.7);}
yuuji@889 441
yuuji@889 442 /*
yuuji@126 443 * PR Web
yuuji@126 444 */
yuuji@126 445 body.pr {font-size: 200%;}
yuuji@126 446 body.pr h1 {
yuuji@126 447 text-align: center; width: 80%; padding: 3ex 0; margin: 0 auto;
yuuji@126 448 background: #ffefef; border: double 5px navy;
yuuji@126 449 }