mirror of
https://github.com/dsprenkels/backpack.git
synced 2026-05-04 03:00:05 -04:00
88 lines
1.2 KiB
CSS
88 lines
1.2 KiB
CSS
.App {
|
|
font-family: monospace;
|
|
}
|
|
|
|
.App-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.App-link {
|
|
color: #61dafb;
|
|
}
|
|
|
|
.App-tagListContainer {
|
|
display: flex;
|
|
align-items: baseline;
|
|
flex-wrap: wrap;
|
|
gap: 6px 10px;
|
|
}
|
|
|
|
.App-tagListHeader .App-tagList {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.App-tagList {
|
|
/* Undo list paddig */
|
|
padding-left: 0;
|
|
}
|
|
|
|
.App-tag {
|
|
display: inline-flex;
|
|
justify-content: flex-start;
|
|
background-color: #f0f0f0;
|
|
border-radius: 4px;
|
|
border: solid 1px black;
|
|
color: #000000;
|
|
font-weight: 500;
|
|
margin: 2px;
|
|
padding: 2px 4px;
|
|
transition: background-color 0.1s, color 0.1s;
|
|
}
|
|
|
|
.App-tag:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.App-tag.App-tag-selected {
|
|
background-color: #5cfa5c;
|
|
color: #000000;
|
|
}
|
|
|
|
@media print {
|
|
.App-tag {
|
|
display: none;
|
|
}
|
|
.App-tag.App-tag-selected {
|
|
display: inline-flex;
|
|
}
|
|
}
|
|
|
|
.App-bringListCategory {
|
|
padding-left: 0;
|
|
list-style: none outside;
|
|
animation: fadein 0.1s linear;
|
|
}
|
|
|
|
.App-bringListItem {
|
|
animation: fadein 0.1s linear;
|
|
}
|
|
|
|
@keyframes fadein {
|
|
from {
|
|
/* height: 0%; */
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
/* height: 100%; */
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
|
|
.App-bringListItemCheckbox {
|
|
margin-right: 1ex;
|
|
} |