-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (73 loc) · 1.25 KB
/
style.css
File metadata and controls
80 lines (73 loc) · 1.25 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
* {
font-family: 'Courier New', Courier, 'Ubuntu Mono', 'DejaVu Sans Mono', monospace;
}
.game {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #ddd;
margin: auto;
text-align: center;
width: 100%;
height: 680px;
}
.instructions {
text-align: center;
}
#terminal-div{ order: 1; }
#canvas-div { order: 2; }
#terminal-div, #canvas-div {
background-color: #fff;
text-align: center;
width: 600px;
height: 640px;
}
#canvas-div{
background-color: #999;
}
#canvas-div canvas {
margin: 0;
display: block;
width: 600px;
height: 640px;
}
#terminal-div {
display: flex;
flex-direction: column;
background-color: black;
}
#terminal-window {
order: 1;
background-color: black;
color: white;
width: 590px;
height: 600px;
resize: none;
overflow: hidden;
border: 5px solid black;
padding: 0;
margin: 0;
}
#terminal-cli {
background-color: black;
order: 2;
}
#terminal-cli span {
font-size: 16px;
display: inline-block;
color: white;
width: 50px;
}
#terminal-cli input {
font-size: 16px;
display: inline-block;
background-color: black;
color: white;
position: relative;
width: 550px;
height: 30px;
margin: 0;
padding: 0;
border: none;
}