12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- movable-view {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 50px;
- width: 50px;
- background: #1AAD19;
- color: #fff;
- }
- movable-area {
- height: 200px;
- width: 200px;
- background-color: #ccc;
- overflow: hidden;
- }
- .page-section {
- display: flex;
- justify-content: center;
- }
- .page-body {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .metric {
- width: 200px;
- display: flex;
- justify-content: center;
- flex-direction:column;
- align-items:center;
- }
- .b {
- display: inline-block;
- width: 75px;
- font-weight: bold;
- }
- .span {
- display: inline-block;
- width: 50px;
- }
|