blob: 3300965447d18a35085d67ae4713f781aa11ceaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
body {
background-color: #000;
}
.camnumber {
position: absolute;
left: 20px;
top: -100px;
background: rgba(0,0,0,0.4);
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;
}
img {
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
top: 0;
left: 0;
margin: 0;
padding: 0;
z-index: 50;
}
|