Advertisement
caffeinatedmike

commandline.html

Nov 25th, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body {
  5. min-width: 100vw;
  6. min-height: 100vh;
  7. display: flex;
  8. flex-direction: column;
  9. justify-content: center;
  10. background-color: #eee;
  11. }
  12.  
  13. .console {
  14. font-family: 'Fira Mono';
  15. width: 700px;
  16. height: 450px;
  17. box-sizing: border-box;
  18. margin: auto;
  19. }
  20.  
  21. .console header {
  22. border-top-left-radius: 15px;
  23. border-top-right-radius: 15px;
  24. background-color: #555;
  25. height: 45px;
  26. line-height: 45px;
  27. text-align: center;
  28. color: #DDD;
  29. }
  30.  
  31. .console .consolebody {
  32. border-bottom-left-radius: 15px;
  33. border-bottom-right-radius: 15px;
  34. box-sizing: border-box;
  35. padding: 20px;
  36. height: calc(100% - 40px);
  37. overflow: scroll;
  38. background-color: #000;
  39. color: #63de00;
  40. }
  41.  
  42. .console .consolebody p {
  43. line-height: 1.5rem;
  44. }
  45.  
  46. .debug-status {
  47. color: orange;
  48. }
  49. .info-status {
  50. /**color: '';**/
  51. }
  52. .warning-status {
  53. color: yellow;
  54. }
  55. .error-status {
  56. color: red;
  57. }
  58. .critical-status {
  59. color: red;
  60. font-weight: bold;
  61. }
  62. </style>
  63. </head>
  64. <body>
  65. <div class="console">
  66. <header>
  67. <p>homelegance@09:54AM</p>
  68. </header>
  69. <div class="consolebody">
  70. <p><span class="debug-status">DEBUG</span> type help to see a list of commands</p>
  71. <p><span class="info-status">INFO</span> type help to see a list of commands</p>
  72. <p><span class="warning-status">WARNING</span> type help to see a list of commands</p>
  73. <p><span class="error-status">ERROR</span> type help to see a list of commands</p>
  74. <p><span class="critical-status">CRITICAL</span> type help to see a list of commands</p>
  75. <p>></p>
  76. </div>
  77. </div>
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement