This commit is contained in:
Sebastian Korotkiewicz 2022-03-21 07:34:51 +01:00
parent 83070ead8b
commit 316b752c17
Signed by: grizzly
GPG Key ID: 5BDC557B496BDB0D
2 changed files with 14 additions and 1 deletions

View File

@ -39,7 +39,7 @@
border: 4px dotted greenyellow;
padding: 10px;
border-radius: 1rem;
background-color: beige;
background-color: beige;
position: relative;
}
.stats {
@ -51,6 +51,9 @@
.ascii {
width: 65%;
}
.ascii pre {
background-color: transparent;
}
em.description {
margin-top: 10px;
}

View File

@ -196,6 +196,16 @@
font-size: 10px;
text-align: center;
}
.botany {
transform: scale(0.8);
transition: all 0.2s ease-in-out;
}
.botany:hover {
transform: scale(1);
}
.botany h3 {
color: green;
}
</style>
</body>
</html>