-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
103 lines (89 loc) · 1.28 KB
/
index.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
body{
text-align: center;
}
#main, #evaluateWindow{
display: none;
}
#debugWindow{
margin: 2%;
height: 85%;
width: 95%;
overflow:scroll;
}
#toolWindow{
height: 5%;
width: 95%;
top: 72%;
}
#expression{
font-size: 100%;
width: 100%;
height: 35px;
}
#evaluateWindow{
border: 1px solid;
z-index: 9999;
left: 25%;
width: 50%;
height: 30%;
top: -50%;
}
.ui-icon-circle-close {
cursor:pointer;
display: block;
}
#result{
width: 100%;
height: 75%;
font-size: 100%;
font-weight: bolder;s
}
td{
text-align: justify;
font-size: 120%;
font-family: monospace;
white-space: nowrap;
}
td.lineNumber{
}
tr.breakpoint{
background-color: pink;
}
tr.currentLine{
background-color: #2154A6;
color: white;
}
.command{
background-color: #eeeeee;
margin-right: 4;
margin-left: 4;
margin-top: 2;
margin-bottom: 2;
vertical-align: middle;
}
#error{
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}