MyReadings/style.css

72 lines
963 B
CSS
Raw Permalink Normal View History

2024-08-06 08:04:44 -04:00
:root{
--bg1: #002b36;
--bg2: #073642;
--content1: #586e75;
--content2: #657b83;
--content3: #839496;
--content4: #93a1a1;
--lbg1: #eee8d5;
--lbg2: #fdf6e3;
}
table tbody tr:nth-child(odd){
background-color: var(--content1);
}
table tbody tr:nth-child(even) {
background-color: var(--content4);
}
2024-08-05 15:37:29 -04:00
body{
2024-08-06 08:04:44 -04:00
background-color: var(--bg1);
color: white;
2024-08-05 16:15:47 -04:00
}
2024-08-06 08:04:44 -04:00
h1 {
2024-08-05 16:15:47 -04:00
display: flex;
justify-content: center;
}
2024-08-06 08:04:44 -04:00
table {
border-collapse:collapse;
background-color: var(--bg2);
}
thead {
background-color: var(--base1);
}
tbody {
background-color: var(--base0);
2024-08-05 16:15:47 -04:00
}
tr {
max-height: 250px;
2024-08-06 08:04:44 -04:00
background-color: inherit;
2024-08-05 16:15:47 -04:00
}
img {
max-height: inherit;
max-width: inherit;
}
.image-div {
max-height: inherit;
width: 15%;
}
.namedesc-div {
width: 30%;
}
2024-08-06 08:04:44 -04:00
.reading-date {
width: 5%;
}
2024-08-05 16:15:47 -04:00
td {
2024-08-06 08:04:44 -04:00
text-align: center;
background-color: none;
2024-08-05 16:15:47 -04:00
}
.name {
font-weight: bold;
2024-08-05 15:37:29 -04:00
}