Add hint for esolang notes button

This commit is contained in:
Nilay Majorwar
2022-02-27 01:44:36 +05:30
parent b24c31378f
commit abcda33167
2 changed files with 40 additions and 2 deletions

View File

@ -21,3 +21,12 @@ a {
* {
box-sizing: border-box;
}
.esolang-notes-hint {
transition: all 0.1s;
transform-origin: 100% 50%;
}
.esolang-notes-hint.hide {
transform: scaleX(0);
}