mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-03 16:19:48 +00:00
28 lines
580 B
CSS
28 lines
580 B
CSS
.table-container {
|
|
width: 95%;
|
|
height: 95%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: auto;
|
|
}
|
|
|
|
.styled-table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
.styled-table th {
|
|
border-bottom: 1px solid #ddd;
|
|
text-align: center;
|
|
font-size: larger;
|
|
background-color: rgba(0, 159, 255, 0.1);
|
|
}
|
|
.styled-table td {
|
|
border-bottom: 5px solid #FFF;
|
|
border-top: 5px solid #FFF;
|
|
text-align: center;
|
|
font-size: large;
|
|
padding: 20px;
|
|
background-color: rgba(248, 248, 255, 1);
|
|
} |