Guest User

Untitled

a guest
Mar 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. body {
  2. background-color: #272727;
  3. padding: 10px;
  4. }
  5.  
  6. .shell-wrap {
  7. width: 500px;
  8. margin: 10px auto 0 auto;
  9. box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  10. -webkit-border-radius: 3px;
  11. -moz-border-radius: 3px;
  12. border-radius: 3px;
  13. }
  14.  
  15. .shell-body {
  16. height: 200px;
  17. max-height: 200px;
  18. overflow: auto;
  19. margin: 0;
  20. padding: 5px;
  21. list-style: none;
  22. background: #141414;
  23. color: #9CD9F0;
  24. font: 0.8em 'Andale Mono', Consolas, 'Courier New';
  25. line-height: 1.6em;
  26. -webkit-border-bottom-right-radius: 3px;
  27. -webkit-border-bottom-left-radius: 3px;
  28. -moz-border-radius-bottomright: 3px;
  29. -moz-border-radius-bottomleft: 3px;
  30. border-bottom-right-radius: 3px;
  31. border-bottom-left-radius: 3px;
  32. }
  33.  
  34. .shell-body li:before {
  35. content: '>';
  36. position: absolute;
  37. left: 0;
  38. top: 0;
  39. }
  40.  
  41. .shell-body li {
  42. word-wrap: break-word;
  43. position: relative;
  44. padding: 0 0 0 15px;
  45. }
  46.  
  47. .typewriter {
  48. overflow: hidden;
  49. /* Ensures the content is not revealed until the animation */
  50. white-space: nowrap;
  51. /* Keeps the content on a single line */
  52. animation: typing 0.5s steps(40, end)
  53. }
  54.  
  55. /* The typing effect */
  56.  
  57. @keyframes typing {
  58. from {
  59. width: 0
  60. }
  61. to {
  62. width: 100%
  63. }
  64. }
Add Comment
Please, Sign In to add comment