-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcss.php
More file actions
executable file
·53 lines (45 loc) · 977 Bytes
/
css.php
File metadata and controls
executable file
·53 lines (45 loc) · 977 Bytes
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<style type="text/css">
/*This is where the magic happens!*/
div.attack_box {
border: 1px solid #000000;
position: relative;
width: 100%;
}
div.attack_box_contents {
background-color: transparent;
height: 100%;
position: relative;
width: 100%;
z-index: 101;
}
div.attack_box_background {
background-color: black;
height: 100%;
filter: alpha(opacity=<?php echo $config['transp']; ?>);
/* IE's opacity*/
left: 0px;
opacity: <?php echo $config['transp'] / 100; ?>;
position: absolute;
top: 0px;
width: 100%;
z-index: 99;
}
.metal {
color: #AFAFAF;
}
.cristal {
color: #74D0F1;
}
.deuterium {
color: #34C924;
}
.perte {
color: #FF0921;
}
.renta {
color: #ED7F10;
}
.number {
text-align: right;
}
</style>