diff --git a/redbot/assets/red_style.css b/redbot/assets/red_style.css index 22a345dc..f6b11029 100644 --- a/redbot/assets/red_style.css +++ b/redbot/assets/red_style.css @@ -1,33 +1,54 @@ /* layout, major elements */ body { + --width: 650px; background-color: #fcfcfc; color: #111; font: 12pt/14pt "Helvetica Neue", Helvetica, Arial, sans-serif; - margin: 1em 40px; - max-width: 1240px; } + margin: 1em 40px; } body.blank { margin: 6em auto 3em auto; - width: 650px; } + width: var(--width); } + +#columns { + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; + width: 100%; + height: 100%; + -webkit-flex-wrap: wrap; + -moz-flex-wrap: wrap; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-flex-flow: row wrap; + -moz-flex-flow: row wrap; + -ms-flex-flow: row wrap; + flex-flow: row wrap; } #left_column { - width: 650px; - float: left; + width: var(--width); margin: 0; padding: 0; } #right_column { - width: 550px; - float: right; + -webkit-box-ordinal-group: 1; + -moz-box-ordinal-group: 1; + -ms-flex-order: 1; + -webkit-order: 1; + order: 1; margin: 1em 0 0 40px; padding: 0; } -@media screen and (max-width: 1320px) { - #left_column, #right_column { - width: 650px; - margin: 0; - padding: 0; - float: left; - clear: both; } } +@media screen and (max-width: 650px) { + body { + -webkit-flex-flow: column wrap; + -moz-flex-flow: column wrap; + -ms-flex-flow: column wrap; + flex-flow: column wrap; + --width: calc(100% - 4px); } + #right_column { + margin: 0; } } a, .post_link { color: blue; @@ -37,8 +58,7 @@ h1 { color: #111; padding: 0; margin: 10px 0px; - font-size: 1.8em; - width: 100%; } + font-size: 1.8em; } h1 a { color: #444; text-decoration: none; } @@ -87,7 +107,7 @@ br { text-align: center; color: #737373; font-size: 0.8em; - width: 650px; } + width: var(--width); } #final_status { color: #737373; @@ -115,14 +135,14 @@ body.blank > .footer { position: absolute; margin: 0 auto; bottom: 15%; - width: 650px; } + width: var(--width); } /* news */ .news { text-align: center; font-size: 1.0; font-weight: normal; - width: 650px; } + width: var(--width); } .news-banner { color: #737373; } @@ -138,7 +158,7 @@ body.blank > .footer { padding: 0.5em; font-weight: bold; font-size: 1.1em; - width: 650px; + width: var(--width); box-sizing: content-box; } .error a { @@ -156,8 +176,11 @@ input#uri, input#go { margin: 0; box-sizing: border-box; } +#request_form { + width: var(--width); } + input#uri { - width: 610px; + width: calc(var(--width) - 40px); color: #111; border-right: none; } input#uri::placeholder { @@ -176,7 +199,7 @@ input#go { -moz-border-radius-bottomleft: 0.5em; -moz-border-radius-bottomright: 0.5em; background-color: #72726E; - width: 650px; + width: var(--width); margin: 0; } #add_req_hdr, .delete_req_hdr { @@ -190,7 +213,7 @@ input#go { .req_hdr { background-color: #72726E; - width: 650px; + width: var(--width); white-space: nowrap; } input.hdr_name, select.hdr_name { @@ -198,7 +221,7 @@ input.hdr_name, select.hdr_name { box-sizing: border-box; } input.hdr_val, select.hdr_val { - width: 480px; + width: calc(var(--width) - 130px - 40px); box-sizing: border-box; } option[value="other..."] { @@ -210,12 +233,6 @@ option[value="other..."] { margin-left: 0.75em; font-weight: normal; } -@media screen and (max-width: 770px) { - .req_hdr, .add_req_hdr { - width: 100%; } - input#uri { - width: calc(100% - 40px); } } - /* response detail */ #response, .nonfinal_response { font-size: 10pt; diff --git a/redbot/assets/style.css b/redbot/assets/style.css index a2a3c731..e1090bda 100644 --- a/redbot/assets/style.css +++ b/redbot/assets/style.css @@ -1 +1 @@ -body{background-color:#fcfcfc;color:#111;font:12pt/14pt "Helvetica Neue",Helvetica,Arial,sans-serif;margin:1em 40px;max-width:1240px}body.blank{margin:6em auto 3em auto;width:650px}#left_column{width:650px;float:left;margin:0;padding:0}#right_column{width:550px;float:right;margin:1em 0 0 40px;padding:0}@media screen and (max-width:1320px){#left_column,#right_column{width:650px;margin:0;padding:0;float:left;clear:both}}a,.post_link{color:blue;text-decoration:underline}h1{color:#111;padding:0;margin:10px 0;font-size:1.8em;width:100%}h1 a{color:#444;text-decoration:none}h2{font-size:1.1em}h3{font-size:.9em;margin:0;padding:0}.hidden{display:none}.hilight{color:#d33}.save{color:#737373}.version{text-align:center;color:#737373;font-size:.8em;padding-top:5em}.navigation{text-align:center;color:#737373;font-size:.8em}.btw{text-align:center;color:#737373;font-size:.8em;font-style:italic}br{clear:both}#red_status{color:#737373;font-size:.8em;margin-top:1em;text-align:center;color:#737373;font-size:.8em;width:650px}#final_status{color:#737373;font-size:.8em;position:absolute;top:2em;right:2em}form.link{display:inline}form.link input[type='submit']{border:0;padding:0;background:0;cursor:pointer;font-family:inherit;font-size:inherit;color:blue;text-decoration:underline;text-align:left}body.blank>.footer{position:absolute;margin:0 auto;bottom:15%;width:650px}.news{text-align:center;font-size:1.0;font-weight:normal;width:650px}.news-banner{color:#737373}.error{color:#eaeaea;background-color:#a33;-webkit-border-radius:.5em;-moz-border-radius:.5em;-ms-border-radius:.5em;border-radius:.5em;padding:.5em;font-weight:bold;font-size:1.1em;width:650px;box-sizing:content-box}.error a{color:white}input:focus{outline:0}input#uri,input#go{border:2px solid #72726e;font-size:1.1em;height:30px;padding:1px;margin:0;box-sizing:border-box}input#uri{width:610px;color:#111;border-right:0}input#uri::placeholder{color:#c4c4c4}input#go{width:40px;border-left:none;border-right:0;background-color:#d33;color:white}.add_req_hdr{-webkit-border-bottom-right-radius:.5em;-webkit-border-bottom-left-radius:.5em;-moz-border-radius-bottomleft:.5em;-moz-border-radius-bottomright:.5em;background-color:#72726e;width:650px;margin:0}#add_req_hdr,.delete_req_hdr{font-size:.65em;margin-left:2em;color:white;text-decoration:none}.delete_req_hdr{margin-left:.5em}.req_hdr{background-color:#72726e;width:650px;white-space:nowrap}input.hdr_name,select.hdr_name{width:130px;box-sizing:border-box}input.hdr_val,select.hdr_val{width:480px;box-sizing:border-box}option[value="other..."]{color:#737373;font-style:italic}.req_link{font-size:75%;margin-left:.75em;font-weight:normal}@media screen and (max-width:770px){.req_hdr,.add_req_hdr{width:100%}input#uri{width:calc(100% - 40px)}}#response,.nonfinal_response{font-size:10pt;font-family:Courier,monospace;background-color:#111;color:#ddd;-webkit-border-radius:.75em;-moz-border-radius:.75em;-ms-border-radius:.75em;border-radius:.75em;border:1px solid black;padding:1em 1.5em;margin-bottom:0;overflow-x:auto}#response a,.nonfinal_response a,#response .post_link,.nonfinal_response .post_link{color:#ccf}.nonfinal_response{background-color:rgba(17,17,17,0.6);border:0}.hdr.hilight{color:white;font-weight:bold}.options{margin-top:.2em;margin-bottom:2em;padding-top:0;text-align:center}.option{padding-right:2em;display:inline;font-size:.75em}#body{position:relative}#body .prettyprint{position:absolute;font:.80/1.00 Consolas,"Lucida Console",Monaco,monospace;overflow-x:auto;overflow-y:hidden;background-color:#fff;-webkit-border-radius:1em;-moz-border-radius:1em;-ms-border-radius:1em;border-radius:1em;border:1px solid #ccc;padding:9px;width:100%}table#summary{font-size:.8em;width:100%;border-spacing:0;background-color:#111;color:#ddd;-webkit-border-radius:1em;-moz-border-radius:1em;-ms-border-radius:1em;border-radius:1em;border:1px solid black;padding:1em;margin-top:1em}table#summary th{text-align:left;padding:2em .5em .25em .5em;border-bottom:1px solid #666;vertical-align:bottom}table#summary td{text-align:center;padding:.25em .4em;white-space:nowrap}table#summary tr:hover td{background-color:#333}table#summary td.uri{text-align:left;font-family:monospace}table#summary td a,table#summary td .post_link{color:#ccf;text-decoration:none}table#summary a.fade{color:#111;background:linear-gradient(90deg,#ccf 0,#ccf 93%,rgba(204,204,255,0) 100%);color:transparent;-webkit-background-clip:text;background-clip:text}.yes img{fill:#94c594;filter:invert(80%) sepia(25%) saturate(395%) hue-rotate(71deg) brightness(89%) contrast(88%);height:18px}.no img{fill:#d98080;filter:invert(89%) sepia(22%) saturate(4693%) hue-rotate(301deg) brightness(90%) contrast(86%);height:18px}.maybe img{fill:#aa8a22;filter:invert(63%) sepia(66%) saturate(5879%) hue-rotate(29deg) brightness(105%) contrast(73%);height:18px}.tip{display:none}.tippy-box[data-theme~='redbot']{-webkit-border-radius:.5em;-moz-border-radius:.5em;-ms-border-radius:.5em;border-radius:.5em;background-color:#679;opacity:.95;padding:9px;color:white;font-size:.85em}.tippy-box[data-theme~='redbot'] img{max-width:440px}#captcha_popup{display:none;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:500}ul{margin-top:.2em;margin-left:12pt}ul ul{padding-left:9pt;margin-bottom:.4em}li{padding-left:4pt;margin-bottom:6px}li.note{list-style-type:none;position:relative}li.note.hilight{font-weight:bold}.good{color:#659365}li.good:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/check-circle.svg");filter:invert(51%) sepia(37%) saturate(361%) hue-rotate(71deg) brightness(96%) contrast(88%)}.warning{color:#aa8a22}li.warning:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/exclamation-circle.svg");filter:invert(50%) sepia(100%) saturate(343%) hue-rotate(8deg) brightness(90%) contrast(90%)}.bad{color:#a64029}li.bad:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/times-circle.svg");filter:invert(22%) sepia(64%) saturate(1739%) hue-rotate(345deg) brightness(104%) contrast(84%)}.info{color:#111}li.info:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/info-circle.svg");filter:invert(35%) sepia(28%) saturate(2614%) hue-rotate(174deg) brightness(98%) contrast(88%)}.help{-webkit-box-shadow:#DDD 0 1px 2px;position:absolute;background-color:#f4f39e;border-color:#dee184;color:#333;text-align:center;margin:3.5em 0 2.5em 0;padding:1.25em 1em;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.25);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.25);box-shadow:0 1px 3px rgba(0,0,0,0.25);font-family:Chalkboard,'Comic Sans';font-size:14px;width:250px}.help.right{margin:3em 0 2.5em 290px}.help:after{display:block;content:"";position:absolute;width:110px;height:30px;top:-21px;left:30%;border:1px solid #fff;background:rgba(254,254,254,0.6);-webkit-box-shadow:0 0 3px rgba(0,0,0,0.1);-moz-box-shadow:0 0 3px rgba(0,0,0,0.1);box-shadow:0 0 3px rgba(0,0,0,0.1)}.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} \ No newline at end of file +body{--width:650px;background-color:#fcfcfc;color:#111;font:12pt/14pt "Helvetica Neue",Helvetica,Arial,sans-serif;margin:1em 40px}body.blank{margin:6em auto 3em auto;width:var(--width)}#columns{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;width:100%;height:100%;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap}#left_column{width:var(--width);margin:0;padding:0}#right_column{-webkit-box-ordinal-group:1;-moz-box-ordinal-group:1;-ms-flex-order:1;-webkit-order:1;order:1;margin:1em 0 0 40px;padding:0}@media screen and (max-width:650px){body{-webkit-flex-flow:column wrap;-moz-flex-flow:column wrap;-ms-flex-flow:column wrap;flex-flow:column wrap;--width:calc(100% - 4px)}#right_column{margin:0}}a,.post_link{color:blue;text-decoration:underline}h1{color:#111;padding:0;margin:10px 0;font-size:1.8em}h1 a{color:#444;text-decoration:none}h2{font-size:1.1em}h3{font-size:.9em;margin:0;padding:0}.hidden{display:none}.hilight{color:#d33}.save{color:#737373}.version{text-align:center;color:#737373;font-size:.8em;padding-top:5em}.navigation{text-align:center;color:#737373;font-size:.8em}.btw{text-align:center;color:#737373;font-size:.8em;font-style:italic}br{clear:both}#red_status{color:#737373;font-size:.8em;margin-top:1em;text-align:center;color:#737373;font-size:.8em;width:var(--width)}#final_status{color:#737373;font-size:.8em;position:absolute;top:2em;right:2em}form.link{display:inline}form.link input[type='submit']{border:0;padding:0;background:0;cursor:pointer;font-family:inherit;font-size:inherit;color:blue;text-decoration:underline;text-align:left}body.blank>.footer{position:absolute;margin:0 auto;bottom:15%;width:var(--width)}.news{text-align:center;font-size:1.0;font-weight:normal;width:var(--width)}.news-banner{color:#737373}.error{color:#eaeaea;background-color:#a33;-webkit-border-radius:.5em;-moz-border-radius:.5em;-ms-border-radius:.5em;border-radius:.5em;padding:.5em;font-weight:bold;font-size:1.1em;width:var(--width);box-sizing:content-box}.error a{color:white}input:focus{outline:0}input#uri,input#go{border:2px solid #72726e;font-size:1.1em;height:30px;padding:1px;margin:0;box-sizing:border-box}#request_form{width:var(--width)}input#uri{width:calc(var(--width) - 40px);color:#111;border-right:0}input#uri::placeholder{color:#c4c4c4}input#go{width:40px;border-left:none;border-right:0;background-color:#d33;color:white}.add_req_hdr{-webkit-border-bottom-right-radius:.5em;-webkit-border-bottom-left-radius:.5em;-moz-border-radius-bottomleft:.5em;-moz-border-radius-bottomright:.5em;background-color:#72726e;width:var(--width);margin:0}#add_req_hdr,.delete_req_hdr{font-size:.65em;margin-left:2em;color:white;text-decoration:none}.delete_req_hdr{margin-left:.5em}.req_hdr{background-color:#72726e;width:var(--width);white-space:nowrap}input.hdr_name,select.hdr_name{width:130px;box-sizing:border-box}input.hdr_val,select.hdr_val{width:calc(var(--width) - 130px - 40px);box-sizing:border-box}option[value="other..."]{color:#737373;font-style:italic}.req_link{font-size:75%;margin-left:.75em;font-weight:normal}#response,.nonfinal_response{font-size:10pt;font-family:Courier,monospace;background-color:#111;color:#ddd;-webkit-border-radius:.75em;-moz-border-radius:.75em;-ms-border-radius:.75em;border-radius:.75em;border:1px solid black;padding:1em 1.5em;margin-bottom:0;overflow-x:auto}#response a,.nonfinal_response a,#response .post_link,.nonfinal_response .post_link{color:#ccf}.nonfinal_response{background-color:rgba(17,17,17,0.6);border:0}.hdr.hilight{color:white;font-weight:bold}.options{margin-top:.2em;margin-bottom:2em;padding-top:0;text-align:center}.option{padding-right:2em;display:inline;font-size:.75em}#body{position:relative}#body .prettyprint{position:absolute;font:.80/1.00 Consolas,"Lucida Console",Monaco,monospace;overflow-x:auto;overflow-y:hidden;background-color:#fff;-webkit-border-radius:1em;-moz-border-radius:1em;-ms-border-radius:1em;border-radius:1em;border:1px solid #ccc;padding:9px;width:100%}table#summary{font-size:.8em;width:100%;border-spacing:0;background-color:#111;color:#ddd;-webkit-border-radius:1em;-moz-border-radius:1em;-ms-border-radius:1em;border-radius:1em;border:1px solid black;padding:1em;margin-top:1em}table#summary th{text-align:left;padding:2em .5em .25em .5em;border-bottom:1px solid #666;vertical-align:bottom}table#summary td{text-align:center;padding:.25em .4em;white-space:nowrap}table#summary tr:hover td{background-color:#333}table#summary td.uri{text-align:left;font-family:monospace}table#summary td a,table#summary td .post_link{color:#ccf;text-decoration:none}table#summary a.fade{color:#111;background:linear-gradient(90deg,#ccf 0,#ccf 93%,rgba(204,204,255,0) 100%);color:transparent;-webkit-background-clip:text;background-clip:text}.yes img{fill:#94c594;filter:invert(80%) sepia(25%) saturate(395%) hue-rotate(71deg) brightness(89%) contrast(88%);height:18px}.no img{fill:#d98080;filter:invert(89%) sepia(22%) saturate(4693%) hue-rotate(301deg) brightness(90%) contrast(86%);height:18px}.maybe img{fill:#aa8a22;filter:invert(63%) sepia(66%) saturate(5879%) hue-rotate(29deg) brightness(105%) contrast(73%);height:18px}.tip{display:none}.tippy-box[data-theme~='redbot']{-webkit-border-radius:.5em;-moz-border-radius:.5em;-ms-border-radius:.5em;border-radius:.5em;background-color:#679;opacity:.95;padding:9px;color:white;font-size:.85em}.tippy-box[data-theme~='redbot'] img{max-width:440px}#captcha_popup{display:none;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:500}ul{margin-top:.2em;margin-left:12pt}ul ul{padding-left:9pt;margin-bottom:.4em}li{padding-left:4pt;margin-bottom:6px}li.note{list-style-type:none;position:relative}li.note.hilight{font-weight:bold}.good{color:#659365}li.good:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/check-circle.svg");filter:invert(51%) sepia(37%) saturate(361%) hue-rotate(71deg) brightness(96%) contrast(88%)}.warning{color:#aa8a22}li.warning:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/exclamation-circle.svg");filter:invert(50%) sepia(100%) saturate(343%) hue-rotate(8deg) brightness(90%) contrast(90%)}.bad{color:#a64029}li.bad:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/times-circle.svg");filter:invert(22%) sepia(64%) saturate(1739%) hue-rotate(345deg) brightness(104%) contrast(84%)}.info{color:#111}li.info:before{position:absolute;display:block;content:'';left:-1.3em;width:1em;height:1.1em;background-repeat:no-repeat;background-size:1em;background-position:0 .1em;background-image:url("icons/info-circle.svg");filter:invert(35%) sepia(28%) saturate(2614%) hue-rotate(174deg) brightness(98%) contrast(88%)}.help{-webkit-box-shadow:#DDD 0 1px 2px;position:absolute;background-color:#f4f39e;border-color:#dee184;color:#333;text-align:center;margin:3.5em 0 2.5em 0;padding:1.25em 1em;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.25);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.25);box-shadow:0 1px 3px rgba(0,0,0,0.25);font-family:Chalkboard,'Comic Sans';font-size:14px;width:250px}.help.right{margin:3em 0 2.5em 290px}.help:after{display:block;content:"";position:absolute;width:110px;height:30px;top:-21px;left:30%;border:1px solid #fff;background:rgba(254,254,254,0.6);-webkit-box-shadow:0 0 3px rgba(0,0,0,0.1);-moz-box-shadow:0 0 3px rgba(0,0,0,0.1);box-shadow:0 0 3px rgba(0,0,0,0.1)}.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} \ No newline at end of file