blob: 827435ab0b128f53bfb815e46b5a52dc9c54027d (
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
38
39
40
41
42
43
44
45
46
47
48
49
|
body {
background-color:#000000;
}
p,i,table,form {
color:#ffffff;
}
b {
color : #D42471;
}
h1 {
color: #6666ff;
text-align: center
}
a {
color: #00ffff;
text-decoration: none;
}
a:hover {
color: #D42471;
}
table,th,td {
border: 2px solid #D42471;
text-align: center;
}
#tip {
color: #6666ff;
position: fixed;
bottom: 10px;
right: 50px;
border: solid #6666ff;
padding:10px;
background-color: black;
}
.data_tab {
margin-left:auto;
margin-right:auto;
}
em{
color:#FF00FF;
}
|