diff --git a/data/y-web/info/yinfo.yhtm b/data/y-web/info/yinfo.yhtm index a6f107b54..0344c6adf 100644 --- a/data/y-web/info/yinfo.yhtm +++ b/data/y-web/info/yinfo.yhtm @@ -37,7 +37,7 @@ jQuery(document).ready(function(){ if (minutes < 10) minutes = "0" + minutes; - jQuery('#graph_progress').css({ width: "{=var-get:progress=}%"}); + jQuery('#progress').css({ width: "{=var-get:progress=}%"}); jQuery('#clock').html(hours+':'+minutes); jQuery('html head').find('title').text("yInfo"); }); @@ -78,15 +78,9 @@ body { top: 5%; } .yinfo .logo { - top: 20%; + top: 25%; } -.yinfo .event { - top: 50%; -} -.yinfo .graph { - top: 70%; -} -.yinfo .time { +.yinfo .eventinfo { bottom: 5%; } @@ -111,7 +105,7 @@ body { .yinfo .event { vertical-align: middle; text-align: center; - font-size: 200%; + font-size: 10vh; font-weight: bold; white-space: nowrap; overflow: hidden; @@ -121,19 +115,22 @@ body { display: block; margin: 0 auto; height: 20vh; - max-width: 100%; + max-width: 90vw; object-fit: contain; } -.yinfo .graph_outer { +.yinfo .progress_outer { height: 10vh; background-color: #424242; } -.yinfo .graph_inner { +.yinfo .progress_inner { float: left; background-color: #bdbdbd; width: 0; height: 100%; } +.yinfo .spacer { + margin-bottom: 5vh; +} /*]]>*/ @@ -162,22 +159,22 @@ body {
-