123456789101112131415161718192021222324252627282930313233343536 |
- .feed {
- position: absolute;
- z-index: 4;
- right: 8px;
- top: 8px;
- display: flex;
- flex-flow: column nowrap;
- justify-content: flex-end;
- align-items: flex-start;
- pointer-events: none;
- }
- .item {
- display: inline-flex;
- background: #333;
- padding: 0.5em;
- justify-content: flex-end;
- align-items: center;
- }
- .name {
- display: inline-block;
- width: 10em;
- margin-right: 0.5em;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- text-align: right;
- }
- .hitmarker {
- position: absolute;
- z-index: 5;
- width: 100px;
- pointer-events: none;
- }
|