42 lines
589 B
CSS
42 lines
589 B
CSS
img {
|
|
max-width: none;
|
|
}
|
|
|
|
div.center-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: safe center;
|
|
}
|
|
|
|
ul.reset,
|
|
ul.reset li,
|
|
ul.reset ul li {
|
|
margin: 0;
|
|
padding: 0;
|
|
text-indent: 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
column-gap: 1rem;
|
|
}
|
|
|
|
.flex-col {
|
|
flex-direction: column;
|
|
}
|
|
|
|
ul.tags-autocomplete {
|
|
text-indent: 0;
|
|
list-style-type: none;
|
|
position: absolute;
|
|
}
|
|
|
|
ul.tags-autocomplete li button {
|
|
--button-base: #dbdbdb;
|
|
--button-hover: #a9b1ba;
|
|
color: #040a0f;
|
|
}
|