Skip to content

Commit cd852a5

Browse files
committed
added build
1 parent 18eea91 commit cd852a5

34 files changed

Lines changed: 818 additions & 0 deletions

build/bootJarMainClassName

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
com.coditorium.sandbox.Application
Binary file not shown.
Binary file not shown.
733 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
8.34 KB
Binary file not shown.

build/libs/java-react-example.jar

17 MB
Binary file not shown.
Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
2+
body {
3+
margin: 0;
4+
padding: 0;
5+
font-family: sans-serif;
6+
font-size: 12pt;
7+
}
8+
9+
body, a, a:visited {
10+
color: #303030;
11+
}
12+
13+
#content {
14+
padding-left: 50px;
15+
padding-right: 50px;
16+
padding-top: 30px;
17+
padding-bottom: 30px;
18+
}
19+
20+
#content h1 {
21+
font-size: 160%;
22+
margin-bottom: 10px;
23+
}
24+
25+
#footer {
26+
margin-top: 100px;
27+
font-size: 80%;
28+
white-space: nowrap;
29+
}
30+
31+
#footer, #footer a {
32+
color: #a0a0a0;
33+
}
34+
35+
#line-wrapping-toggle {
36+
vertical-align: middle;
37+
}
38+
39+
#label-for-line-wrapping-toggle {
40+
vertical-align: middle;
41+
}
42+
43+
ul {
44+
margin-left: 0;
45+
}
46+
47+
h1, h2, h3 {
48+
white-space: nowrap;
49+
}
50+
51+
h2 {
52+
font-size: 120%;
53+
}
54+
55+
ul.tabLinks {
56+
padding-left: 0;
57+
padding-top: 10px;
58+
padding-bottom: 10px;
59+
overflow: auto;
60+
min-width: 800px;
61+
width: auto !important;
62+
width: 800px;
63+
}
64+
65+
ul.tabLinks li {
66+
float: left;
67+
height: 100%;
68+
list-style: none;
69+
padding-left: 10px;
70+
padding-right: 10px;
71+
padding-top: 5px;
72+
padding-bottom: 5px;
73+
margin-bottom: 0;
74+
-moz-border-radius: 7px;
75+
border-radius: 7px;
76+
margin-right: 25px;
77+
border: solid 1px #d4d4d4;
78+
background-color: #f0f0f0;
79+
}
80+
81+
ul.tabLinks li:hover {
82+
background-color: #fafafa;
83+
}
84+
85+
ul.tabLinks li.selected {
86+
background-color: #c5f0f5;
87+
border-color: #c5f0f5;
88+
}
89+
90+
ul.tabLinks a {
91+
font-size: 120%;
92+
display: block;
93+
outline: none;
94+
text-decoration: none;
95+
margin: 0;
96+
padding: 0;
97+
}
98+
99+
ul.tabLinks li h2 {
100+
margin: 0;
101+
padding: 0;
102+
}
103+
104+
div.tab {
105+
}
106+
107+
div.selected {
108+
display: block;
109+
}
110+
111+
div.deselected {
112+
display: none;
113+
}
114+
115+
div.tab table {
116+
min-width: 350px;
117+
width: auto !important;
118+
width: 350px;
119+
border-collapse: collapse;
120+
}
121+
122+
div.tab th, div.tab table {
123+
border-bottom: solid #d0d0d0 1px;
124+
}
125+
126+
div.tab th {
127+
text-align: left;
128+
white-space: nowrap;
129+
padding-left: 6em;
130+
}
131+
132+
div.tab th:first-child {
133+
padding-left: 0;
134+
}
135+
136+
div.tab td {
137+
white-space: nowrap;
138+
padding-left: 6em;
139+
padding-top: 5px;
140+
padding-bottom: 5px;
141+
}
142+
143+
div.tab td:first-child {
144+
padding-left: 0;
145+
}
146+
147+
div.tab td.numeric, div.tab th.numeric {
148+
text-align: right;
149+
}
150+
151+
span.code {
152+
display: inline-block;
153+
margin-top: 0em;
154+
margin-bottom: 1em;
155+
}
156+
157+
span.code pre {
158+
font-size: 11pt;
159+
padding-top: 10px;
160+
padding-bottom: 10px;
161+
padding-left: 10px;
162+
padding-right: 10px;
163+
margin: 0;
164+
background-color: #f7f7f7;
165+
border: solid 1px #d0d0d0;
166+
min-width: 700px;
167+
width: auto !important;
168+
width: 700px;
169+
}
170+
171+
span.wrapped pre {
172+
word-wrap: break-word;
173+
white-space: pre-wrap;
174+
word-break: break-all;
175+
}
176+
177+
label.hidden {
178+
display: none;
179+
}
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
2+
#summary {
3+
margin-top: 30px;
4+
margin-bottom: 40px;
5+
}
6+
7+
#summary table {
8+
border-collapse: collapse;
9+
}
10+
11+
#summary td {
12+
vertical-align: top;
13+
}
14+
15+
.breadcrumbs, .breadcrumbs a {
16+
color: #606060;
17+
}
18+
19+
.infoBox {
20+
width: 110px;
21+
padding-top: 15px;
22+
padding-bottom: 15px;
23+
text-align: center;
24+
}
25+
26+
.infoBox p {
27+
margin: 0;
28+
}
29+
30+
.counter, .percent {
31+
font-size: 120%;
32+
font-weight: bold;
33+
margin-bottom: 8px;
34+
}
35+
36+
#duration {
37+
width: 125px;
38+
}
39+
40+
#successRate, .summaryGroup {
41+
border: solid 2px #d0d0d0;
42+
-moz-border-radius: 10px;
43+
border-radius: 10px;
44+
}
45+
46+
#successRate {
47+
width: 140px;
48+
margin-left: 35px;
49+
}
50+
51+
#successRate .percent {
52+
font-size: 180%;
53+
}
54+
55+
.success, .success a {
56+
color: #008000;
57+
}
58+
59+
div.success, #successRate.success {
60+
background-color: #bbd9bb;
61+
border-color: #008000;
62+
}
63+
64+
.failures, .failures a {
65+
color: #b60808;
66+
}
67+
68+
.skipped, .skipped a {
69+
color: #c09853;
70+
}
71+
72+
div.failures, #successRate.failures {
73+
background-color: #ecdada;
74+
border-color: #b60808;
75+
}
76+
77+
ul.linkList {
78+
padding-left: 0;
79+
}
80+
81+
ul.linkList li {
82+
list-style: none;
83+
margin-bottom: 5px;
84+
}

0 commit comments

Comments
 (0)