-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
57 lines (49 loc) · 936 Bytes
/
main.css
File metadata and controls
57 lines (49 loc) · 936 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
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0
}
body {
margin: 10px 10px;
}
#console {
overflow-y: scroll;
height: 500px;
width: 75%;
position: absolute;
background-color: rgba(1,1,1,.5);
border: 1px solid black;
color: rgba(0,0,0,.6);
}
#consoleInput {
position: relative;
width: 50%;
display: block;
top: 10px;
/*box-shadow: 0 0 5px rgba(0, 0, 255, 1);*/
border:0px solid rgba(0,0,0, 0.8);
top:-13px;
left:8px;
cursor: none;
background-color: rgba(0,0,0,0);
}
input#consoleInput:focus {
border: 0px !important;
box-shadow: 0 0;
outline: none;
}
#consoleOutput {
position: relative;
width: 50%;
display: block;
}
#consoleOutput:after {
content: "$";
display: block;
display: block;
width: 10px;
height: 15px;
left:10px;
}