-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (43 loc) · 1009 Bytes
/
style.css
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
.q-container{
width:300px;
height:350px;
margin-top:10px;
position:relative;
margin-left:10px;
}
.q-container > div {
position:absolute;
width:300px;
height:30px;
overflow:hidden;
-moz-box-shadow:0px 0px 5px #555;
-webkit-box-shadow:0px 0px 5px #555;
box-shadow:0px 0px 5px #555;
z-index:999;
}
.poll-divs {
font-weight:bold;
height:25px;
width:295px;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E0E0E0', endColorstr='#FFFFFF'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#E0E0E0), to(#FFFFFF)); /* for webkit browsers */
background: -moz-linear-gradient(top, #E0E0E0, #FFFFFF); /* for firefox 3.6+ */
padding:5px;
padding-top:7px;
margin:2px;
margin-left:0px;
margin-top:0px;
color:#3e576f;
}
.poll-divs:hover {
background:#CCCCCC;
cursor:pointer;
}
#poll-res {
height: 350px;
width:300px;
display:none;
margin-top:2px;
margin-left:10px;
margin-bottom:10px;
}