1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- @import "~@less/variables.less";
- .title-wrapper{
- .contentZIndex2;
- overflow: hidden;
- /*padding: 12px 20px 8px 20px;*/
- margin-bottom: 40px;
- background-color: #fff;
- border-bottom: 1px solid #BBBFC1;
- position: fixed;
- left: 10px;
- top: 50px;
- right: 470px;
- min-width: 548px;
- }
- .operations, .health{
- float: left;
- // border: 1px @border-color solid;
- // height: 61px;
- width: 12%;
- border-left: 0px solid #fff;
- text-align: center;
- // line-height: 61px;
- color: @blue;
- span{
- cursor: pointer;
- display: inline-block;
- height: 20px;
- line-height: 20px;
- }
- img {
- width: 20px;
- height: 20px;
- position: relative;
- top: 5px;
- }
- }
- .health{
- opacity: 0.3;
- color: rgba(0,0,0,0.6);
- filter:alpha(opacity=30);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=30);";
- }
- .font{
- font-size: 13px;
- }
|