custom_ui/frontend/src/style.css
Casey Wittrock d6c2e1cb4a fix layout
2025-10-22 11:48:24 -05:00

45 lines
686 B
CSS

:root {
--primary-text-color: #ffffff;
--secondary-background-color: #669084;
}
.page-turn-button {
border-radius: 5px;
border: none;
}
.page-num-button {
border: none;
background-color: Transparent;
}
.interaction-button {
border: none;
border-radius: 5px;
/*background-color: mediumseagreen;*/
color: white;
background-color: rgb(69, 112, 101);
}
.interaction-button:hover {
background-color: rgb(82, 132, 119);
}
#client-content {
display: flex;
flex-direction: column;
width: 95%;
justify-content: center;
}
#filter-container {
display: flex;
flex-direction: row;
gap: 5px 5px;
}
#paging-controls {
display: flex;
justify-content: flex-end;
gap: 5px;
}