-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (53 loc) · 1016 Bytes
/
style.css
File metadata and controls
61 lines (53 loc) · 1016 Bytes
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
body {
font-family: 'Courier New', Courier, monospace;
background-color: #000;
color: #fff;
margin: 0;
padding: 20px;
}
.terminal {
border: 1px solid #555;
padding: 10px;
border-radius: 5px;
background-color: #333;
width: 80%;
max-width: 800px;
margin: 0 auto;
overflow: hidden;
position: relative;
}
.input-line {
display: flex;
align-items: center;
}
.prompt {
color: #6effe6;
margin-right: 5px;
}
.input {
flex: 1;
outline: none;
min-height: 20px;
overflow: auto;
white-space: pre-wrap;
}
.output {
margin-top: 10px;
white-space: pre-wrap;
min-height: 20px;
}
.icons {
display: flex;
align-items: center;
margin-left: 10px;
}
.icon {
width: 32px; /* Increase the size for better visibility */
height: 32px;
margin-left: 15px; /* Add more space between icons */
cursor: pointer;
transition: transform 0.2s; /* Add a smooth transition for hover effect */
}
.icon:hover {
transform: scale(1.2); /* Slightly enlarge the icon on hover */
}