Files
Portfolio/src/css/publication.css

42 lines
521 B
CSS
Raw Normal View History

2022-05-08 22:13:49 +05:30
table,
th,
td {
2024-06-24 00:15:38 -04:00
border-collapse: collapse;
2022-05-08 22:13:49 +05:30
}
th,
td {
2024-06-24 00:15:38 -04:00
padding: 15px;
text-align: left;
2022-05-08 22:13:49 +05:30
}
2022-05-09 00:04:36 +05:30
tr {
2024-06-24 00:15:38 -04:00
height: auto;
2022-05-09 00:04:36 +05:30
}
2022-05-08 22:13:49 +05:30
tr:hover {
2024-06-24 00:15:38 -04:00
background-color: salmon;
2022-05-08 22:13:49 +05:30
}
.publication-detail {
2024-06-24 00:15:38 -04:00
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%;
2022-05-08 22:13:49 +05:30
}
.publication-detail h3 {
2024-06-24 00:15:38 -04:00
font-size: xx-large;
color: aquamarine;
2022-05-08 22:13:49 +05:30
}
.publication-detail a {
2024-06-24 00:15:38 -04:00
color: aquamarine;
}