From ab15172eb00855899da98c9b2b9b028a4d306789 Mon Sep 17 00:00:00 2001 From: thlo Date: Tue, 3 Sep 2013 18:41:33 +0200 Subject: * Image Viewer for Media Folder (press enter on an Image) * Timer GUI improvements * 3D interaction Improvements. --- smarttv-client/CSS/Main.css | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'smarttv-client/CSS') diff --git a/smarttv-client/CSS/Main.css b/smarttv-client/CSS/Main.css index 5ee123c..aea87a6 100755 --- a/smarttv-client/CSS/Main.css +++ b/smarttv-client/CSS/Main.css @@ -44,6 +44,7 @@ body { padding-bottom:3px; margin-top:5px; margin-bottom : 5px; + padding-left:3px; text-align: center; background : transparent; border-radius: 0px; @@ -54,6 +55,7 @@ body { padding-bottom:3px; margin-top:5px; margin-bottom : 5px; + padding-left:3px; text-align: center; border-radius: 3px; background : white; @@ -79,7 +81,7 @@ body { border-style:solid; border-width:1px; background-color: white; - background-color: "-webkit-linear-gradient(top, rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%)"; + background-color: -webkit-linear-gradient(top, rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%); } .style_overflow { @@ -96,6 +98,14 @@ body { width :8px; } +.style_headline { + color : black; + background : linear-gradient(0deg, #1e5799 0%,#2989d8 41%,#7db9e8 100%); + background : -webkit-linear-gradient(top, #1e5799 0%,#2989d8 41%,#7db9e8 100%); + border-radius: 3px; + -webkit-box-shadow: 2px 2px 1px 2px rgba(0,0,0, 0.5); +} + #timerScreen { position: absolute; left: 0px; top: 0px; @@ -607,3 +617,11 @@ body { z-index:60; } +#imageViewer { + position:absolute; + left:0px; top:0px; + width:100%; height:100%; + text-align: center; + background: black; + z-index:10; +} \ No newline at end of file -- cgit v1.2.3 From 230591c0f2f0398e444d8fb7642b518e55cf663e Mon Sep 17 00:00:00 2001 From: thlo Date: Sat, 14 Sep 2013 18:14:06 +0200 Subject: Show Key Bindings (help overlay) when pressing the tools key. Timer Activation and Deactivation. Verbose start for debugging. Scrolling popup for Debugging. ImageViewer improvements. --- smarttv-client/CSS/Main.css | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) (limited to 'smarttv-client/CSS') diff --git a/smarttv-client/CSS/Main.css b/smarttv-client/CSS/Main.css index aea87a6..93aba17 100755 --- a/smarttv-client/CSS/Main.css +++ b/smarttv-client/CSS/Main.css @@ -94,18 +94,50 @@ body { border-radius: 4px; background: red; } + +.style_timerAct { + width :8px; + height:8px; + border-radius: 4px; + background: green; +} + .style_timerNone { width :8px; } .style_headline { color : black; + font-size:14px; background : linear-gradient(0deg, #1e5799 0%,#2989d8 41%,#7db9e8 100%); background : -webkit-linear-gradient(top, #1e5799 0%,#2989d8 41%,#7db9e8 100%); border-radius: 3px; -webkit-box-shadow: 2px 2px 1px 2px rgba(0,0,0, 0.5); } + +.style_hbOverlay { + position: absolute; + z-index:70; + border-radius: 7px; + border-width:1px; + background:rgba(0,0,139, 0.8); + border-style:solid; + border-width:1px; + -webkit-box-shadow:3px 3px 7px 4px rgba(0,0,0, 0.5); +} + +.style_hbOverlayRow { + padding-left : 5px; + padding-right: 5px; +} + +.style_hbOverlayLElm { +} +.style_hbOverlayRElm { +} + + #timerScreen { position: absolute; left: 0px; top: 0px; @@ -302,7 +334,7 @@ body { position: absolute; display: none; left: 120px; top: 10px; - width: 720px; height: 100px; + width: 720px; height: 200px; border-style:solid; border-width:2px; -webkit-border-radius: 7px; -- cgit v1.2.3