blob: 183a88409a20a53dc74b2d6029cc5053e8971b22 (
plain)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
div.lalg {
float: left;
width: 100px;
font-weight: bold;
}
#input {
width: 100%;
height: 350px;
resize: none;
background-color: #fffcfc;
color: black;
font-family: courier;
-moz-border-radius: 5px;
border-radius: 5px;
border: 0px;
}
#output {
width: 100%;
height: 350px;
resize: none;
font-family: courier;
background-color: #fffcfc;
color: blue;
-moz-border-radius: 5px;
border-radius: 5px;
border: 0px;
}
.bclr {
background: #7f7f7f;
}
.banner {
position: relative;
margin-bottom: 10px;
height: 45px;
width: 100%;
background-color: #4E3419;
border-bottom: 0 solid #2E2E2E;
border-top: 0 solid #2E2E2E;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.7);
}
#banner-tabs{
display: inline-block;
float: right;
margin: 16px 130px 0 0;
}
#banner-tabs a{
text-decoration: none;
color: #ffffff;
margin: 0 25px 0 0;
}
.tab-text{
background: #ffffff;
width: 400px;
padding: 25px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
text-align: justify;
font-size: .8em;
}
.logo {
height: 31px;
margin: 8px 0 0 10px;
float: left;
}
#scilab-logo{
position: absolute;
right: 15px;
top: 3px;
width: 90px;
}
.site-name {
display: inline-block;
width: auto;
font: 32px Arial;
color: white;
padding: 6px 0 0 60px;
}
.footer {
margin-top: 10px;
width: 100%;
background-color: #4E3419;
border-bottom: 0 solid #2E2E2E;
border-top: 0 solid #2E2E2E;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.7);
text-align: center;
padding-top: 12px;
padding-bottom: 12px;
}
.white-text {
color: white;
font: 14px Arial;
font-weight: bold;
}
#commentBtn {
background: #efefef;
text-decoration: none;
/*font-weight: bold;*/
color: black;
padding: 4px;
float: right;
border: 2px solid;
margin-right: 5px;
}
.execute-button {
background: #efefef;
text-decoration: none;
/*font-weight: bold;*/
color: black;
padding: 4px;
border: 2px solid;
margin-left: 5px;
}
#lightbox-form{
background: #FFFFFF;
padding: 15px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
position: relative;
}
.lightbox-close{
position: absolute;
top: -12;
right: -12 ;
}
#email-notify{
display: none;
}
.loading-cls{
cursor:wait;
}
#contrib,
#book-download,
#chapter-download,
#example-download {
display: none;
margin-right: 5px;
float: right;
}
|