-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (79 loc) · 1.25 KB
/
style.css
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
*{
margin:0;
padding:0;
box-sizing: border-box;
border-radius: 0;
}
body{
display: flex;
flex-direction: column;
gap: 0;
width: 100dvw;
height: 100dvh;
background-color: #aaa;
}
#code-area{
width: 100%;
resize: vertical;
height: 60%;
max-height: 75%;
min-height: 20%;
background: #222;
color: white;
padding: 10px;
}
.utility_nav{
width: 100%;
height: 2.5rem;
display: flex;
gap: 2rem;
align-items: center;
padding: 0 60px;
background-color: #333;
color: white;
border-top: #aaa solid 1px;
border-bottom: #aaa solid 1px;
}
.utility_nav > button {
padding: 2px 8px;
background-color: #555;
color: white;
border-radius: 5px;
cursor: pointer;
}
.tapecheck{
margin-left: auto;
}
.terminals{
display: flex;
width: 100%;
height: 40%;
min-height: 20%;
flex: 1;
gap:0.5px;
}
#terminal, #tape_terminal{
height: 100%;
background-color: black;
color: white;
overflow-y: auto;
padding: 10px;
resize: horizontal;
}
#terminal{
width: 60%;
min-width: 40%;
}
#tape_terminal{
width: 40%;
flex: 1;
resize: none;
}
#code-area, #terminal, #tape_terminal{
font-family: monospace;
font-size: 1rem;
border: none;
}
#code-area:focus, #terminal:focus, #tape_terminal:focus{
outline: none;
}