Files
cheesy-arena-lite/static/css/audience.css

63 lines
1.1 KiB
CSS
Raw Normal View History

2014-06-07 23:36:40 -07:00
/*
Copyright 2014 Team 254. All Rights Reserved.
Author: nick@team254.com (Nick Eyre)
*/
2014-06-09 23:18:58 -07:00
/* Control Panel (Temporary) */
2014-06-09 21:06:25 -07:00
.controlpanel {
position: fixed;
right: 20px;
top: 20px;
z-index: 99;
background-color: white;
padding: 20px;
border: 1px solid black;
}
2014-06-09 23:18:58 -07:00
/* Top Level Container */
2014-06-07 23:36:40 -07:00
html,body {
height: 100%;
margin: 0;
width: 100%;
}
2014-06-09 23:18:58 -07:00
#topcontainer {
2014-06-07 23:36:40 -07:00
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
2014-06-09 23:18:58 -07:00
/* Design Element: Blinds */
2014-06-07 23:36:40 -07:00
.blinds {
position: fixed;
top: 0;
background-size: 200%;
height: 100%;
width: 50%;
}
.blinds.left {
background-position: left;
left: -50%;
}
.blinds.right {
background-position: right;
right: -50%;
}
.blinds.full {
width: 100%;
background-position: center;
background-size: 100%;
}
2014-06-09 23:18:58 -07:00
/* Screen: Logo */
#logo .blinds.background {
2014-06-07 23:36:40 -07:00
background-image: url('/static/img/endofmatch-bg.png');
}
2014-06-09 23:18:58 -07:00
#logo .blinds.center {
2014-06-07 23:36:40 -07:00
background-image: url('/static/img/endofmatch-center.png');
-webkit-backface-visibility: hidden;
}
2014-06-09 23:18:58 -07:00
#logo .blinds.center.blank {
2014-06-07 23:36:40 -07:00
background-image: url('/static/img/endofmatch-center-blank.png');
}