| 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 |
.stat-card { |
| 10 |
font-size: 13px; |
| 11 |
text-decoration: none; |
| 12 |
padding: 15px 15px; |
| 13 |
display: inline-flex; |
| 14 |
border: 1px solid #eee; |
| 15 |
margin: 5px 5px; |
| 16 |
align-items: center; |
| 17 |
flex: 1 2 150px; |
| 18 |
transition: all .35s; |
| 19 |
|
| 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,.08); |
| 24 |
box-shadow: 0 1px 20px 0 rgba(69,90,100,.08); |
| 25 |
|
| 26 |
&.red { |
| 27 |
background: -webkit-gradient(linear,left top,right top,from(#fe5d70),to(#fe909d)); |
| 28 |
background: linear-gradient(to right,#fe5d70,#fe909d); |
| 29 |
background-color: rgba(0, 0, 0, 0); |
| 30 |
background-clip: border-box; |
| 31 |
} |
| 32 |
|
| 33 |
&.orange { |
| 34 |
background: -webkit-gradient(linear,left top,right top,from(#fe9365),to(#feb798)); |
| 35 |
background: linear-gradient(to right,#fe9365,#feb798); |
| 36 |
background-color: rgba(0, 0, 0, 0); |
| 37 |
background-clip: border-box; |
| 38 |
} |
| 39 |
|
| 40 |
&.blue { |
| 41 |
background: -webkit-gradient(linear,left top,right top,from(#01a9ac),to(#01dbdf)); |
| 42 |
background: linear-gradient(to right,#01a9ac,#01dbdf); |
| 43 |
background-color: rgba(0, 0, 0, 0); |
| 44 |
background-clip: border-box; |
| 45 |
} |
| 46 |
|
| 47 |
&.active, |
| 48 |
&:not(.nohover):hover { |
| 49 |
box-shadow: inset 0 0 40px 2px #00000052; |
| 50 |
} |
| 51 |
|
| 52 |
.side { |
| 53 |
width: 40px; |
| 54 |
flex: 0 0; |
| 55 |
font-size: 20px; |
| 56 |
} |
| 57 |
|
| 58 |
.body { |
| 59 |
flex: 1 2 auto; |
| 60 |
|
| 61 |
.count { |
| 62 |
margin-bottom: 5px; |
| 63 |
font-size: 30px; |
| 64 |
line-height: 32px; |
| 65 |
font-family: inherit; |
| 66 |
font-weight: 500; |
| 67 |
} |
| 68 |
|
| 69 |
.title { |
| 70 |
font-weight: 500; |
| 71 |
} |
| 72 |
} |
| 73 |
border: 1px solid #eee; |
| 74 |
} |
| 75 |
|
| 76 |
|
| 77 |
@media(max-width:767px) { |
| 78 |
|
| 79 |
|
| 80 |
} |
| 81 |
} |
| 82 |
|