From d9ccb92d336bb36a90b3ab9ace2d221644442d43 Mon Sep 17 00:00:00 2001 From: thlo Date: Sun, 1 Sep 2013 16:53:29 +0200 Subject: Timer menu entry, which gives an overview of the timers and allows deletion of timers. widget.conf configurable InfoOverlay timeout (new widget.conf entry ) YouTube entry becomes optional. Add true to your widget.conf Improved server error feedback through widget GUI Bug Fixes. --- smarttv-client/CSS/Main.css | 87 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) (limited to 'smarttv-client/CSS') diff --git a/smarttv-client/CSS/Main.css b/smarttv-client/CSS/Main.css index 9478ad8..5ee123c 100755 --- a/smarttv-client/CSS/Main.css +++ b/smarttv-client/CSS/Main.css @@ -39,6 +39,93 @@ body { background-color: rgba(0,0,139,0.8); } +.style_menuItem { + color : white; + padding-bottom:3px; + margin-top:5px; + margin-bottom : 5px; + text-align: center; + background : transparent; + border-radius: 0px; +} + +.style_menuItemSelected{ + color : black; + padding-bottom:3px; + margin-top:5px; + margin-bottom : 5px; + text-align: center; + border-radius: 3px; + background : white; + background : -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%); + -webkit-box-shadow : 2px 2px 1px 2px rgba(0,0,0, 0.5); +} + +.style-roundItem { + margin-left: 10px; + padding: 10px 10px 10px 10px; + border-radius:10px; + font-size:16px; + border-style:solid; + border-width:1px; + background: transparent; +} + +.style-roundItemSelected { + margin-left: 10px; + padding: 10px 10px 10px 10px; + border-radius:10px; + font-size:16px; + 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%)"; +} + +.style_overflow { + overflow: hidden; + white-space : nowrap; +} +.style_timerRec { + width :8px; + height:8px; + border-radius: 4px; + background: red; +} +.style_timerNone { + width :8px; +} + +#timerScreen { + position: absolute; + left: 0px; top: 0px; + width: 960px; height: 540px; + z-index:10; + + background: radial-gradient(ellipse at 80% 80%, #c5deea 0%,#8abbd7 31%,#066dab 100%); + background: -webkit-radial-gradient(80% 80%, ellipse cover, rgba(197,222,234,1) 0%,rgba(138,187,215,1) 31%,rgba(6,109,171,1) 100%); + } +#timerView { + position: absolute; + left: 240px; top: 135px; + width: 480px; height: 270px; + margin-top:3px; + margin-bottom:3px; + border-style:solid; + border-width:2px; + font-size:16px; + border-radius: 7px; + -webkit-border-radius: 7px; + padding-top:5px; + padding-bottom:5px; + padding-left:20px; + padding-right:20px; + background: rgba(6,109,171,1) 100%; + background: linear-gradient(135deg, #1e5799 0%,#2989d8 41%,#7db9e8 100%); + background: -webkit-linear-gradient(-45deg, #1e5799 0%,#2989d8 41%,#7db9e8 100%); + -webkit-box-shadow:3px 3px 7px 4px rgba(0,0,0, 0.5); +} + #selectScreen { position: absolute; left: 0px; top: 0px; -- cgit v1.2.3