2016-04-10 10:00:00 +00:00
* {
-webkit-box-sizing : border-box ;
2017-12-03 11:34:43 +00:00
box-sizing : border-box ;
/* This sets all elements to be the actual set dimensions, disregarding padding and borders */
/* -webkit-backface-visibility: hidden; /* Hide the backface of elements - useful for 3d effects */
-webkit-transition : translate3d ( 0 , 0 , 0 ) ; /* Turns on hardware acceleration - not known to be of benefit in CCG, but won't hurt */
2016-04-10 10:00:00 +00:00
}
2017-12-03 11:34:43 +00:00
html ,
2016-04-10 10:00:00 +00:00
body {
2017-12-03 11:34:43 +00:00
width : 1920px ;
/* Set to your channel's resolution */
height : 1080px ;
/* Set to your channel's resolution */
margin : 0 ;
/* Use all available space */
padding : 0 ;
/* Use all available space */
background : transparent ;
/* The HTML consumer actually makes your background transparent by default, unless a color or image is specified - but this might be usefull when debugging in browsers */
overflow : hidden ;
/* Hide any overflowing elements - to disable scollbars */
-webkit-font-smoothing : antialiased ! important ;
/* Set aliasing of fonts - possible options: none, antialiased, subpixel-antialiased */
}
body {
font-family : Calibri , Arial ;
2016-04-10 10:00:00 +00:00
font-size : 40px ;
2017-12-03 11:34:43 +00:00
color : # fff ;
/ * -webkit-text-stroke-width : 0 . 5px ;
2016-04-10 10:00:00 +00:00
-webkit-text-stroke-color : # 888888 ;
2016-04-15 10:08:36 +00:00
text-shadow : 2px 2px 1px # 000000 ; * /
2016-04-10 10:00:00 +00:00
}
2016-04-14 04:01:51 +00:00
body {
font-family : Arial ;
font-weight : normal ;
2017-12-03 11:34:43 +00:00
text-shadow : 0px 0px 0px # 000 ;
2016-04-14 04:01:51 +00:00
font-size : 22pt ;
}
html {
overflow : auto ;
}
2017-12-03 11:34:43 +00:00
body > div {
2016-04-14 04:01:51 +00:00
position : absolute ;
}
2016-04-10 08:37:05 +00:00
. root-element {
opacity : 0 ;
transition : opacity 1s ;
}
. root-element-display {
opacity : 1 ;
transition : opacity 1s ;
}
2017-12-03 11:34:43 +00:00
/*# sourceMappingURL=client.css.map */