Created
May 19, 2011 14:23
-
-
Save apeschar/980850 to your computer and use it in GitHub Desktop.
Stylesheet voor de Studio Hilversum Kino player
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Plaats !important achter regels die veranderd worden: | |
display: none; ===> display: none !important; | |
*/ | |
.kino .kino-overlay { | |
display: none; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
background: white; | |
opacity: 0.6; | |
filter: alpha(opacity=60); | |
z-index: 1000; | |
} | |
.kino .kino-window { | |
display: none; | |
background: white; | |
padding: 5px 15px 5px 15px; | |
position: fixed; | |
z-index: 1001; | |
font-family: Verdana, Arial, sans-serif; | |
} | |
.kino .kino-window a { | |
outline: none; | |
} | |
.kino .kino-window .kino-clear { | |
clear: both; | |
} | |
.kino .kino-window .kino-header { | |
position: relative; | |
height: 30px; | |
width: 656px; | |
} | |
.kino .kino-window .kino-header h1 { | |
text-align: center; | |
font-size: 130%; | |
font-weight: bold; | |
line-height: 30px; | |
} | |
.kino .kino-window .kino-header .kino-top-controls { | |
position: absolute; | |
bottom: 5px; | |
right: 0; | |
} | |
.kino .kino-window .kino-header .kino-top-controls .kino-mute { | |
display: inline-block; | |
text-decoration: none; | |
color: #575757; | |
font-size: 85%; | |
font-weight: bold; | |
height: 16px; | |
line-height: 16px; | |
padding-right: 18px; | |
background: url(img/volume_unmuted.png) top right no-repeat; | |
} | |
.kino .kino-window .kino-header .kino-top-controls .kino-mute.kino-muted { | |
background: url(img/volume_muted.png) top right no-repeat; | |
} | |
.kino .kino-window .kino-header .kino-top-controls .kino-close { | |
text-indent: -9999px; | |
display: inline-block; | |
width: 15px; | |
height: 16px; | |
background: url(img/close.png) bottom left no-repeat; | |
margin-left: 5px; | |
} | |
.kino .kino-window .kino-main { | |
padding: 5px; | |
background: #575757 url(img/mainbg.png) repeat-x; | |
border-radius: 4px; | |
-moz-border-radius: 4px; | |
-webkit-border-radius: 4px; | |
position: relative; | |
} | |
.kino .kino-window .kino-main .kino-video { | |
width: 640px; | |
height: 360px; | |
padding: 3px; | |
background: #707070; | |
} | |
.kino .kino-window .kino-main .kino-video * { | |
outline: 0; | |
} | |
.kino .kino-window .kino-main .kino-caption { | |
padding-top: 5px 0; | |
min-height: 46px; | |
width: 644px; | |
background: white; | |
border: 1px solid #707070; | |
text-align: center; | |
font-size: 120%; | |
line-height: 23px; | |
} | |
.kino .kino-window .kino-main .kino-form { | |
padding: 15px 0 15px 15px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left, .kino .kino-window .kino-main .kino-form .kino-form-right { | |
float: left; | |
height: 165px; | |
position: relative; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left h2, .kino .kino-window .kino-main .kino-form .kino-form-right h2 { | |
color: white; | |
text-shadow: #575757 2px 2px 3px; | |
font-weight: bold; | |
margin-bottom: 5px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input, .kino .kino-window .kino-main .kino-form .kino-form-left textarea, .kino .kino-window .kino-main .kino-form .kino-form-right input, .kino .kino-window .kino-main .kino-form .kino-form-right textarea { | |
display: block; | |
margin: 10px 0; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input[type=text], .kino .kino-window .kino-main .kino-form .kino-form-left textarea, .kino .kino-window .kino-main .kino-form .kino-form-right input[type=text], .kino .kino-window .kino-main .kino-form .kino-form-right textarea { | |
border: 1px solid #575757; | |
padding: 4px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input[type=text].masked, .kino .kino-window .kino-main .kino-form .kino-form-left textarea.masked, .kino .kino-window .kino-main .kino-form .kino-form-right input[type=text].masked, .kino .kino-window .kino-main .kino-form .kino-form-right textarea.masked { | |
color: #8c8c8c; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input[type=text], .kino .kino-window .kino-main .kino-form .kino-form-right input[type=text] { | |
background: white url(img/inputbg.png) repeat-x; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input[type=submit], .kino .kino-window .kino-main .kino-form .kino-form-right input[type=submit] { | |
position: absolute; | |
bottom: 0; | |
width: 106px; | |
height: 24px; | |
border: 0; | |
line-height: 24px; | |
background: url(img/form_button.png) no-repeat; | |
color: white; | |
font-weight: bold; | |
cursor: pointer; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left { | |
width: 170px; | |
padding-right: 30px; | |
background: url(img/form_divider.png) no-repeat center right; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input[type=text], .kino .kino-window .kino-main .kino-form .kino-form-left textarea { | |
width: 160px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-left input[type=submit] { | |
left: 32px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-right { | |
margin-left: 30px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-right textarea { | |
width: 370px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-right input[type=text] { | |
width: 220px; | |
} | |
.kino .kino-window .kino-main .kino-form .kino-form-right input[type=submit] { | |
left: 57px; | |
} | |
.kino .kino-window .kino-main .kino-powered-by { | |
text-indent: -9999px; | |
display: block; | |
position: absolute; | |
bottom: 0; | |
right: 0; | |
background: url(img/poweredby.png); | |
width: 173px; | |
height: 44px; | |
} | |
.kino .kino-window .kino-footer { | |
text-align: center; | |
} | |
.kino .kino-window .kino-footer p { | |
margin: 0; | |
font-size: 105%; | |
letter-spacing: 1px; | |
line-height: 30px; | |
} | |
.kino .kino-window .kino-footer p, .kino .kino-window .kino-footer p a { | |
color: #a8a8a8; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment