MyReadings/style.css

40 lines
445 B
CSS
Raw Normal View History

2024-08-05 15:37:29 -04:00
body{
background-color: #586e75;
2024-08-05 16:15:47 -04:00
}
h1, #table {
display: flex;
justify-content: center;
}
#table {
background-color: green;
}
tr {
max-height: 250px;
background-color: green;
}
img {
max-height: inherit;
max-width: inherit;
}
.image-div {
max-height: inherit;
width: 15%;
}
.namedesc-div {
width: 30%;
}
td {
background-color: red;
border: 2px solid;
}
.name {
font-weight: bold;
2024-08-05 15:37:29 -04:00
}