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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* pichat.css */
body {
font-size:13;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
margin:2%;
}
#rapper{
}
#container {
text-align: left;
font-family: sans-serif;
color: #4E4848;
margin-left: auto;
margin-right: auto;
width: 1200px;
}
#description {display:none;width:790px;}
#description div, .post, .result {}
#description p > p,#description p {margin:0;line-height:1;width:auto;}
#description img {float:left;margin:0 12px 12px 0;}
table.search{font-family:Verdana,Arial,Helvetica,sans-serif;text-align:left;font-size:11px;color:#333}
.gsc-trailing-more-results,.gsc-resultsHeader,
.gsc-search-box{display:none;}
.gsc-results{padding-left:0px;}
#searchControl
.gsc-control{width:600;height:30;padding:0px;padding-left:0;}select, label{font:bold 11px Arial,Helvetica,sans-serif;color:#003;text-transform:uppercase;margin-right:5px;}
input#q{width:400;height:25px;font:bold Arial,Helvetica,sans-serif;color:#F00;}
input#submit{
width:100px;
height:28px;
font-size:20px;
background-image:url(/static/img/bg-btn-blue.png);
text-align:center;
z-index:100;
cursor:pointer;
background-color:#087cff;
font-size:12px;
color:#fff;
text-shadow:1px 1px 3px rgba(0,0,0,0.5);
}
#logo{padding-left:20;}
#ish{width:520;
padding:20;
height:550;
margin-top:70px;
border:1px solid #000;
box-shadow: 0 0 10px #d8dbde, 0px 0px 10px #d8dbde;
-webkit-box-shadow: 0 0 10px #d8dbde, 0px 0px 10px #d8dbde;
-moz-box-shadow: 0 0 10px #d8dbde, 0px 0px 10px #d8dbde;
background-color:#eff5fb;
background-repeat:repeat-x;
border-top-left-radius:15px;
border-top-right-radius:15px;
-webkit-border-top-left-radius:15px;
-webkit-border-top-right-radius:15px;
-moz-border-radius-topleft:15px;
-moz-border-radius-topright:15px;
border-bottom-left-radius:15px;
border-bottom-right-radius:15px;
-webkit-border-bottom-left-radius:15px;
-webkit-border-bottom-right-radius:15px;
-moz-border-radius-bottomleft:15px;
-moz-border-radius-bottomright:15px;
}
#content{
z-index: 3;
overflow: auto;
min-width:600px;
}
|