| 1 |
.wdk-dashwidget-element .dash-widgets-statistics-usage { |
| 2 |
display: flex; |
| 3 |
flex-wrap: wrap; |
| 4 |
align-items: flex-start; |
| 5 |
justify-content: flex-start; |
| 6 |
margin-left: -5px; |
| 7 |
margin-right: -5px; |
| 8 |
} |
| 9 |
|
| 10 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card { |
| 11 |
font-size: 13px; |
| 12 |
text-decoration: none; |
| 13 |
padding: 15px 15px; |
| 14 |
display: inline-flex; |
| 15 |
border: 1px solid #eee; |
| 16 |
margin: 5px 5px; |
| 17 |
align-items: center; |
| 18 |
flex: 1 2 150px; |
| 19 |
transition: all .35s; |
| 20 |
background: linear-gradient(to right, #0ac282, #0df3a3); |
| 21 |
color: #fff; |
| 22 |
border-radius: 5px; |
| 23 |
-webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08); |
| 24 |
box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08); |
| 25 |
border: 1px solid #eee; |
| 26 |
} |
| 27 |
|
| 28 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card.red { |
| 29 |
background: -webkit-gradient(linear, left top, right top, from(#fe5d70), to(#fe909d)); |
| 30 |
background: linear-gradient(to right, #fe5d70, #fe909d); |
| 31 |
background-color: rgba(0, 0, 0, 0); |
| 32 |
background-clip: border-box; |
| 33 |
} |
| 34 |
|
| 35 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card.orange { |
| 36 |
background: -webkit-gradient(linear, left top, right top, from(#fe9365), to(#feb798)); |
| 37 |
background: linear-gradient(to right, #fe9365, #feb798); |
| 38 |
background-color: rgba(0, 0, 0, 0); |
| 39 |
background-clip: border-box; |
| 40 |
} |
| 41 |
|
| 42 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card.blue { |
| 43 |
background: -webkit-gradient(linear, left top, right top, from(#01a9ac), to(#01dbdf)); |
| 44 |
background: linear-gradient(to right, #01a9ac, #01dbdf); |
| 45 |
background-color: rgba(0, 0, 0, 0); |
| 46 |
background-clip: border-box; |
| 47 |
} |
| 48 |
|
| 49 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card.active, .wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card:not(.nohover):hover { |
| 50 |
box-shadow: inset 0 0 40px 2px #00000052; |
| 51 |
} |
| 52 |
|
| 53 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card .side { |
| 54 |
width: 40px; |
| 55 |
flex: 0 0; |
| 56 |
font-size: 20px; |
| 57 |
} |
| 58 |
|
| 59 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card .body { |
| 60 |
flex: 1 2 auto; |
| 61 |
} |
| 62 |
|
| 63 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card .body .count { |
| 64 |
margin-bottom: 5px; |
| 65 |
font-size: 30px; |
| 66 |
line-height: 32px; |
| 67 |
font-family: inherit; |
| 68 |
font-weight: 500; |
| 69 |
} |
| 70 |
|
| 71 |
.wdk-dashwidget-element .dash-widgets-statistics-usage .stat-card .body .title { |
| 72 |
font-weight: 500; |
| 73 |
} |
| 74 |
|