29 lines
No EOL
568 B
CSS
29 lines
No EOL
568 B
CSS
body {
|
|
font-family: Inter, Cantarell, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
|
|
article {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 3px;
|
|
background-color: rgba(0,0,255,0.08);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
article:not(:first-child) {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
article div:first-child {
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space:nowrap;
|
|
}
|
|
|
|
article div:last-child {
|
|
width:120px;
|
|
min-width: 120px;
|
|
text-align: right;
|
|
} |