-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcmd.css
More file actions
99 lines (87 loc) · 1.66 KB
/
Copy pathcmd.css
File metadata and controls
99 lines (87 loc) · 1.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#close-button {
object-fit: cover;
width: 100%;
height: 100%;
}
#cmd {
background-color: black;
border: 1px solid grey;
height: 400px;
width: 70vw;
border-radius: 10px;
resize: both;
-webkit-user-drag: element;
position: absolute;
z-index: 5;
opacity: .95;
margin-top: 5vw;
}
#cmd-header {
background-color: rgb(80,80,80);
width: 100%;
height: 35px;
font-weight: bold;
color: white;
cursor: move;
display: flex;
border-radius: 10px 10px 0 0;
}
#cmd-header button {
background-color: rgba(0, 0, 0, 0);
border: rgba(0, 0, 0, 0);
height: 35px;
align-self: flex-end;
}
#cmd-header button:hover {
background-color: red;
border-radius: 0 10px 0 0;
}
#cmd-header p {
padding-left: 10px;
font-size: large;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
align-self: center;
width: 95%;
}
#cmd-textbox p {
background-color: rgba(0, 0, 0, 0);
color: white;
font-family: monospace;
font-size: 1.2vw;
padding-left: 10px;
padding-top: 5px;
}
#cmd-textbox {
overflow: auto;
overflow-y: auto;
white-space: nowrap;
display: flex;
align-items: center;
}
#cmd-result {
padding-left: 50px;
width: 95%;
height: 50%;
display: block;
}
#cmd-result p {
color: white;
font-family: monospace;
font-size: 1.2vw;
}
#command {
background-color: rgba(0, 0, 0, 0);
border-color: rgba(0, 0, 0, 0);
padding-top: 10px;
padding-left: 10px;
font-size: 15px;
color: white;
width: 700px;
display: block;
}
input {
font-family: monospace;
}
input:focus {
outline: none;
}