Anket.css 1.44 KB
Newer Older
1 2
@charset "utf-8";

3 4 5
.anket-dialog
{
    position: fixed;
6
    z-index:1000;
7 8 9 10 11 12 13
}
.anket-dialog h1
{
    text-align:left;
    height:25px;
    line-height:25px;
    margin:0;
14
    padding:0 0 0 5px;
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
}
.anket-dialog .anket-container
{
    -webkit-overflow-scrolling: touch;
}
.anket-dialog .anket-container iframe
{
    -webkit-overflow-scrolling: touch !important;
    overflow: scroll !important;
}
.anket-dialog .anket-commands
{
    text-align:center;
    height:60px;
    line-height:60px;
    margin:0;
    padding:0;
}
.anket-dialog .anket-commands input[type='button']
{
    padding:0 10px;
    cursor:pointer;
    margin-right:5px;
    width:100px;
    height:30px;
    line-height:30px;
}
.anket-dialog .anket-commands input[type='button']:hover
{
}

.anket-transparent-content
{
    opacity:0;
}
.anket-transparent
{
    opacity:0.5;
}
.anket-translucent
55
{
56 57 58 59 60 61 62
    opacity:0.8;
}
.anket-opacity
{
    opacity:1.0;
}

63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
.anket-dialog
{
    border:solid 1px #333;
    background-color:#fff;
}
.anket-dialog h1
{
    color:#fff;
    background:url(../../img/viewer/article_bg.png) 0 0 repeat;
}
.anket-dialog .anket-container
{

}
.anket-dialog .anket-container iframe
{

}
.anket-dialog .anket-commands
{
    border-top:solid 1px #333;
}
.anket-dialog .anket-commands input[type='button']
{
    border-radius:10px;
    border:solid 1px #333;
    background-color:#ccc;
    cursor:pointer;
}
.anket-dialog .anket-commands input[type='button']:hover
{
    background-color:#fff;
}