-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterminal.scss
More file actions
63 lines (58 loc) · 1.17 KB
/
terminal.scss
File metadata and controls
63 lines (58 loc) · 1.17 KB
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
.terminal {
height: 100%;
box-sizing: border-box;
* {
box-sizing: border-box;
}
}
.xterm {
.xterm-helper-textarea {
opacity: 1;
outline: 0;
background-color: transparent;
border: transparent;
color: transparent;
caret-color: transparent;
}
}
.keyboard-extension {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}
.keyboard-extension {
> div {
width: 100%;
pointer-events: all;
position: absolute;
padding: 5px;
background-color: lightgray;
left: 0;
bottom: 0;
display: flex;
gap: 5px;
transform: translateY(100%);
transition: 0.3s transform;
opacity: 0;
> button {
padding: 10px 20px;
font-size: 14px;
border-radius: 5px;
border: 0;
border: 1px solid gray;
&:active {
background-color: lightgray;
}
}
}
&.show {
> div {
transform: translateY(0%);
opacity: 1;
}
}
}