cctv-control/css/cam.css

83 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2014-02-07 15:22:41 +01:00
body {
2014-02-14 19:18:18 +01:00
font-family: Helvetica, Verdana, Arial, sans-serif;
2014-02-07 15:22:41 +01:00
background-color: #000;
2014-02-14 19:24:05 +01:00
padding: 0px;
margin: 0px;
2014-02-07 15:22:41 +01:00
}
2014-02-14 19:18:18 +01:00
.camNumber {
position: fixed;
2014-02-07 15:22:41 +01:00
left: 20px;
top: -100px;
2014-02-14 19:18:18 +01:00
background: rgba(0,0,0,0.6);
width: 100px;
text-align: center;
2014-02-07 15:22:41 +01:00
color: rgba(255, 255, 255, 0.7);
font-weight: bold;
font-family: Helvetica, Verdana, Arial, sans-serif;
font-size: 120px;
line-height: 120px;
z-index: 100;
}
2014-02-14 19:18:18 +01:00
#camImage {
2014-01-24 12:35:41 +01:00
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
2014-02-07 15:22:41 +01:00
margin: 0;
padding: 0;
2014-01-24 12:35:41 +01:00
2014-02-07 15:22:41 +01:00
z-index: 50;
2014-01-24 12:35:41 +01:00
}
2014-02-14 19:18:18 +01:00
#form {
/*visibility: hidden;*/
width: 800px;
height: 100%;
background-color: rgba(127, 192, 255, 0.9);
margin: 0 auto;
position: relative;
2014-02-14 19:24:05 +01:00
top: 0px;
2014-02-14 19:18:18 +01:00
padding: 40px;
z-index: 200;
}
#formImage {
margin-right: 0px;
margin-left: auto;
float: right;
position: relative;
width: 400px;
}
#printButton {
width: 200px;
height: 100px;
display: block;
margin: 10px auto;
background-image: url('../img/print_button.png');
text-decoration: none;
}
#printButton:hover {
background-image: url('../img/print_button_highlight.png');
}