Skip to content

Instantly share code, notes, and snippets.

@nfreear
Created April 3, 2012 11:01
Show Gist options
  • Select an option

  • Save nfreear/2291035 to your computer and use it in GitHub Desktop.

Select an option

Save nfreear/2291035 to your computer and use it in GitHub Desktop.
OU player / OUVLE colours / via LTS-media corporate (public copy)
@charset "UTF-8";
/* CSS Document */
/* Background Colours*/
.default_blue {
background-color: rgb(41,110,143);
}
.orange {
background-color: rgb(204, 92, 40);
}
.dark_blue {
background-color: rgb(29, 93, 57);
}
.green {
background-color: rgb(82, 82, 37);
}
.grey {
background-color: rgb(70, 70, 70);
}
.purple {
background-color: rgb(78, 40, 122);
}
.pink {
background-color: rgb(197, 45, 115);
}
.dark_red {
background-color: rgb(100, 24, 52);
}
.button_normal {
background-color:rgb(255, 255, 255);
}
/* Text Colours*/
.default_blue_text {
color: rgb(41,110,143);
}
.orange_text {
color: rgb(204, 92, 40);
}
.dark_blue_text {
color: rgb(29, 93, 57);
}
.green_text {
color: rgb(82, 82, 37);
}
.grey_text {
color: rgb(70, 70, 70);
}
.purple_text {
color: rgb(78, 40, 122);
}
.pink_text {
color: rgb(197, 45, 115);
}
.dark_red_text {
color: rgb(100, 24, 52);
}
.button_normal_text {
color:rgb(255, 255, 255);
}
.button_normal_numbers {
color:rgb(65, 64, 66);
}
/*Player*/
.mediaplayer {
height: 22px;
width: 100%;
}
.oump_play {
height: 22px;
width: 22px;
background-image:url(images/oump_button_play.png);
}
.oump_pause {
height: 22px;
width: 22px;
background-image:url(images/oump_button_pause.png);
}
.oump_transport {
height: 4px;
width: 100%;
background-color: rgb(204, 204, 203);
}
.oump_transport_played {
height: 4px;
width: 100%;
}
.oump_transport_playhead {
height: 4px;
width: 2px;
background: rgb(255, 255, 255);
}
.oump_transport_preroll {
height: 4px;
width: 100%;
background-image:url(images/oump_preroll.png);
}
.oump_control_panel {
height: 18px;
width: 100%;
background-color: rgb(243, 242, 242);
}
/*Extended Function Buttons*/
.oump_displaysize_full {
width:16px;
height:16px;
background-image:url(images/oump_button_fullscreen.png) ;
}
.oump_displaysize_default {
width:16px;
height:16px;
background-image:url(images/oump_button_defaultscreen.png) ;
}
.oump_displaysize_full_rollover {
width:16px;
height:16px;
background-image:url(images/oump_button_rollover_fullscreen.png) ;
}
.oump_displaysize_default_rollover {
width:16px;
height:16px;
background-image:url(images/oump_button_rollover_defaultscreen.png) ;
}
/*Audio controls*/
.oump_audio_on {
width:9px;
height:8px;
background-image:url(images/oump_audio_on.png) ;
}
.oump_audio_off {
width:9px;
height:8px;
background-image:url(images/oump_audio_off.png) ;
}
.oump_volume_plus {
width:8px;
height:8px;
background-image:url(images/oump-volume-plus-off.png) ;
}
.oump_volume_minus {
width:8px;
height:8px;
background-image:url(images/oump-volume-minus-off.png) ;
}
/*Typography*/
.text-tip {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
}
.text-tip_plinth {
background-color: rgb(255, 255, 255)
padding: 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment