This commit is contained in:
2021-07-16 21:23:17 -03:00
parent e60588e577
commit ddb59961a6
3 changed files with 22 additions and 3 deletions

View File

@@ -92,4 +92,9 @@ article {
margin-bottom: 2vh;
padding-bottom: 1vh;
border: solid #a1c7e0 1px ;
}
figcaption {
color: #797979;
margin-bottom: 3vh;
}

View File

@@ -41,7 +41,16 @@
</div>
<div class="source">
Autor: <b><?php echo $author;?></b> | Pagina fuente: <b><?php echo $page_source;?></b>
<?php
if ($author) {
echo "Autor: <b>$author</b> | ";
}
echo "Pagina fuente: <b>$page_source</b>";
?>
<!-- Autor: <b><?php echo $author;?></b> | Pagina fuente: <b><?php echo $page_source;?></b> -->
</div>
</body>
</html>

View File

@@ -73,6 +73,7 @@ header {
background-color: #ffffff;
border-radius: 15px;
display: flex;
position: relative;
}
.card .text {
@@ -113,9 +114,13 @@ header {
font-weight: lighter;
font-size: 12.5pt;
color: #797979;
margin-bottom: 1.5vh;
}
.card .source {
align-self: flex-end;
flex-grow: 1;
position: absolute;
bottom: 0;
right: 0;
margin-right: 1vw;
color: #bbbbbb
}