0

The Quake like terminal provided at link has this animation of dropping down from top.I am trying to change its behaviour to come-out from bottom of page instead.Is there any simple way to achieve that ?

jcubic
  • 61,973
  • 54
  • 229
  • 402
Nikhil
  • 1,021
  • 12
  • 13

1 Answers1

0

You only need to add this css (after terminal css):

.tilda{
    top: auto;
    bottom: 0;
}
jcubic
  • 61,973
  • 54
  • 229
  • 402