1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .tab-panel {
- &.stats-panel {
- overflow-y : auto;
- }
- .stat-title1 {
- font-size : 1.1em;
- padding : 10px;
- }
- .stat-title2 {
- margin : 10px 0 10px 0;
- font-size : 1.05em;
- border-bottom : 1px solid $color-bot;
- box-sizing : border-box;
- }
- .stat-label {
- display : inline-block;
- width : 80%;
- padding : 2px;
- background-color: $background-lighter;
- border-bottom : 1px solid $background;
- border-top : 1px solid $background;
- height : 30px;
- line-height : 30px;
- box-sizing : border-box;
-
- }
- .stat-value {
- display : inline-block;
- width : 20%;
- padding : 2px;
- background-color: $background-lighter;
- border-top : 1px solid $background;
- border-bottom : 1px solid $background;
- height : 30px;
- line-height : 30px;
- box-sizing : border-box;
- }
- .stat-infos {
- width : 100%;
- padding : 4px;
- }
- }
|