master.css 2.77 KB
Newer Older
1
body{
2 3
    font-family:helvetica, arial, sans-serif;
    font-size:12px;
4 5 6
}

.on-the-right{
7 8 9 10 11
    width:0px;
    position:absolute;
    top:0;
    overflow:visible;
    margin-left:100%;
12 13 14
}

.toolbar{
15 16 17 18 19
    background-image:url(../images/toolbarBody.png);
    padding-left:4px;
    border:1px solid #cccccc;
    border-bottom:1px solid #ffffff;
    position:relative;
20 21 22
}

.toolbar>div>.button{
23 24 25 26 27 28
    width:29px;
    height:24px;
    float:left;
    margin-right:4px;
    margin-top:0px;
    cursor:pointer;
29 30 31
}

#toolbar-down{
32 33 34 35 36 37
    font-size:18px;
    font-weight:bold;
    color:#333333;
    text-align:center;
    font-family:helvetica, arial, sans-serif;
    text-shadow: #ffffff 0px 1px 1px;
38 39 40
}

#url{
41 42 43 44 45
    height:20px;
    float:left;
    border:1px solid #b9b9b9;
    padding-right:4%;
    width:80%;
46 47 48
}

#left-field{
49
    float:left;
50 51 52
}

#right-field{
53
    float:right;
54 55 56
}

#center-field{
57 58
    display:block-inline;
    position:relative;
59 60 61
}

#center-field.min{
62
    margin-right:6px;
63 64 65
}

#center-field.full{
66 67
    margin-right:78px;
    margin-left:65px;
68 69 70 71 72 73 74 75 76 77 78 79 80 81
}

#web-canevas { 
    width:100%;
    position:relative;
}

#web-browser { 
    border:1px solid #cccccc;
    position:relative;
    width:100%;
}

.toolbar-body {
82 83 84
    display: table;
    width: 100%;
    height: 37px;
85

86 87
    /* IE hacks */
    position: relative !ie7;
88 89
}
.toolbar-body>div {
90 91
    display: table-cell;
    vertical-align: middle;
92

93 94 95
    /* IE hacks */
    position: absolute !ie7;
    top: 50% !ie7;
96 97 98 99 100 101 102 103
}

#toolbar-button-back{ background-image:url(../images/toolbarButtonBack.png) }
#toolbar-button-forward{ background-image:url(../images/toolbarButtonForward.png) }
#toolbar-button-home{ background-image:url(../images/toolbarButtonHome.png) }
#toolbar-button-languages{ background-image:url(../images/toolbarButtonLanguages.png) }

#toolbar-button-search{
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    float: left;
    width:22px;
    height:22px;
    position:relative;
    margin-left:-32px;
    background-image:url(../images/toolbarButtonSearch.png);
    background-repeat:no-repeat;
    background-position:center center;
    border: 1px solid #B9B9B9;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: #dadada -1px 0 4px;
    box-shadow: #dadada -1px 0 4px;
}

#toolbar-button-search:hover{
    border: 1px solid #666666;
121 122 123
}

#toolbar-button-languages{
124
    width:66px;
125 126 127
}

#toolbar-button-back{
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
    margin-right:0px;
}

.popupWordInfo{
    position: absolute;
    display: none;
    width: 100px;
    height: 17px;
    top: 0;
    left: 0;
    text-align: center;
    border: 1px solid #B9B9B9;
    background-color: #eaebeb;
    color: black;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: #dadada -1px 0 4px;
    box-shadow: #dadada -1px 0 4px;
    z-index: 100;
    font-family: Arial,Helvetica,sans-serif;
149
}