|
|
Line 1: |
Line 1: |
| /* CSS placed here will be applied to all skins */ | | /* CSS placed here will be applied to all skins */ |
|
| |
| body
| |
| {
| |
| font-family:'Segoe UI','Segoe',Segoe,'Lucida Grande','Open Sans Light',Verdana,Arial,Helvetica,sans-serif;
| |
| }
| |
|
| |
|
| .center | | .center |
Line 16: |
Line 11: |
| float:right; | | float:right; |
| } | | } |
|
| |
| .TablePager {
| |
| color:#000000;
| |
| }
| |
|
| |
| .hoverable {
| |
| cursor:default;
| |
| color:#000;
| |
| text-decoration:none;
| |
| position: relative;
| |
| display: block;
| |
| width:150px;
| |
| }
| |
| .hoverable .NavInfo {
| |
| opacity:0;
| |
| position: absolute;
| |
| top: 0;
| |
| left: 0;
| |
| right: 0;
| |
| bottom: 0;
| |
| }
| |
| .hoverable .NavInfo,
| |
| .hoverable .NavButton{
| |
| transition: opacity .5s;
| |
| -o-transition: opacity .5s;
| |
| -ms-transition: opacity .5s;
| |
| -moz-transition: opacity .5s;
| |
| -webkit-transition: opacity .5s;
| |
| }
| |
| .hoverable:hover .NavButton {
| |
| opacity:.5;
| |
| }
| |
| .hoverable:hover .NavInfo {
| |
| opacity:1;
| |
| }
| |