-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpretty.css
106 lines (90 loc) · 1.37 KB
/
pretty.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
body {
font-family:monospace;
font-size:12px;
}
canvas {
background-color: #eeeeee;
border: 2px inset black;
border-radius:10px;
}
#log-area {
float: left;
margin-left:40px;
}
#inputs {
float:left;
height:600px;
}
#input-machine-div {
float:left;
}
#input-tape-div {
float:left;
}
#machine-format {
padding:10px;
width:400px;
float:left;
}
#how-to-use {
padding:10px;
width:400px;
margin-left:50px;
float:left;
}
#instructions {
width:900px;
height:400px;
border: solid 2px;
border-radius: 10px;
}
#examples {
margin-top:50px;
width:900px;
height:650px;
}
#example-1 {
margin-left: 50px;
width: 300px;
float: left;
border: solid;
background-color: #dfdfdf;
padding:10px;
border-radius: 10px;
}
#example-2 {
margin-left: 50px;
width: 300px;
height: auto;
float: left;
border: solid;
background-color: #dfdfdf;
padding:10px;
border-radius: 10px;
}
.table-pre {
background-color: white;
}
td {
vertical-align:top;
}
#footer {
clear:left;
width:500px;
height:20px;
background:#abcdef;
font-size:15px;
padding:10px;
}
#footer-small {
clear:left;
height:20px;
width:500px;
font-size:15px;
background:#abcdef;
padding:10px;
}
strong {
font-size:large;
color: #ff0000;
}