12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @import "~@less/variables.less";
- .title-wrapper{
- 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: 480px;
- z-index: 200;
- }
- .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);";
- }
|