mirror of
https://gitlab.com/MrFry/qmining-page
synced 2026-04-28 19:27:36 +02:00
24 lines
276 B
CSS
24 lines
276 B
CSS
.container {
|
|
display: flex;
|
|
flex-flow: column;
|
|
|
|
padding: 5px;
|
|
}
|
|
|
|
.listItem {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
color: white;
|
|
}
|
|
|
|
.listItem:hover {
|
|
background-color: var(--hoover-color);
|
|
}
|
|
|
|
.text {
|
|
text-align: center;
|
|
}
|