Download this file
121 lines (107 with data), 1.7 kB
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 | #content
{
width: 600px;
height: 380px;
margin: 0 auto;
background-color: #AABBCC;
overflow: auto;
text-align: justify;
padding: 10px;
}
#content h3
{
margin-top: 0;
text-align: center;
}
#progressbar_bg
{
width: 650px;
height: 24px;
margin: 10px auto;
border: 1px solid #333333;
border-radius: 5px;
background-image: url(img/progressbar_bg.svg);
}
#progressbar_fg
{
width: 0%;
height: 23px;
border: 1px solid #0b2b61;
border-radius: 5px;
text-align: center;
font-weight: bold;
line-height: 22px;
color: white;
background-image: url(img/progressbar_fg.svg);
}
#closebutton
{
padding-top: 8px;
padding-right: 8px;
}
#dialog button
{
width: 100px;
height: 25px;
}
#dialog
{
padding: 15px;
}
#dialog .content
{
text-align: justify;
}
.code
{
display: block;
font-family: monospace;
background-color: white;
padding: 5px 10px;
margin: 10px 0;
color: black;
font-size: 14px;
}
.CodeMirror
{
width: 100%;
background-color: #ffffff;
color: black;
text-align: left;
font-size: 14px;
font-family: monospace;
float: right;
}
.answertable
{
margin: 10px auto;
}
.answertable td
{
text-align: left;
}
#terminaldlg
{
position: absolute;
top: 0;
margin: 20px auto;
background-color: white;
border: 1px solid black;
display: none;
z-index: 99999;
}
#terminal
{
display: block;
width: 350px;
height: 160px;
background-color: black;
color: white;
text-align: left;
font-size: 14px;
font-family: monospace;
border: none;
resize: none;
margin: 0;
padding: 0;
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.