-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (66 loc) · 1.11 KB
/
styles.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
body {
font-family: sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
.text{
max-width: 45rem;
margin-inline: auto;
}
.code {
display: flex;
flex-direction: row;
}
#codeInput{
width: 10rem;
resize: none;
border: 1px solid lightgray;
}
#compiledCode > p{
font-family: sans-serif;
line-height: normal;
font-size: 0.6rem;
padding-inline: 2rem;
overflow: scroll;
max-height: 10rem;
}
#compiledCode > p > s{
background-color: gold;
text-decoration-line: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: sans-serif;
}
p {
line-height: 1.8;
font-size: 1rem;
}
.symbolTable {
font-family: sans-serif;
font-weight: normal;
}
.symbolTable th{
font-weight: normal;
}
.stack {
font-family: sans-serif;
text-align: center;
font-size: 1rem;
table-layout: fixed;
width: 5rem;
}
.stack td {
border: 1px solid lightgray;
}
.stack th{
font-weight: normal;
}
.stack tr {
padding: 0.2rem;
border: 0.5px solid black;
}
.stack tbody {
overflow: scroll;
max-height: 5rem;
}