File size: 1,112 Bytes
4d82c1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* General styling */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #181818;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Terminal container */
.terminal-container {
    width: 80%;
    max-width: 800px;
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

/* Header styling */
.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
}

.header h1 {
    margin: 0;
}

/* Terminal design */
.terminal {
    display: flex;
    flex-direction: column;
    height: 300px;
    overflow-y: auto;
}

.terminal .output {
    flex-grow: 1;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.prompt {
    color: #00ff00;
}

.input {
    background-color: #181818;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    outline: none;
}

/* Input focus styling */
.input:focus {
    border: 1px solid #00ff00;
}