Cleaned up code structure

This commit is contained in:
2024-06-24 00:12:52 -04:00
parent 4aed6b824d
commit 2cc88cdf72
26 changed files with 28 additions and 20 deletions

41
src/css/publication.css Normal file
View File

@@ -0,0 +1,41 @@
table,
th,
td {
border-collapse: collapse;
}
th,
td {
padding: 15px;
text-align: left;
}
tr {
height: auto;
}
tr:hover {
background-color: salmon;
}
.publication-detail {
padding: 30px;
margin: 40px;
border: 1px solid white;
border-radius: 2em;
white-space: normal;
overflow: auto;
text-overflow: ellipsis;
text-align: justify;
padding-left: 5%;
padding-right: 5%;
}
.publication-detail h3 {
font-size: xx-large;
color: aquamarine;
}
.publication-detail a {
color: aquamarine
}