-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeta-test-report.html
171 lines (140 loc) · 4.3 KB
/
beta-test-report.html
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html>
<head>
<title>Beta Test Report</title>
<meta charset="utf-8">
<script>
companyName = "3MDEB";
companyStreet = "ul. Burgaska 9D/10";
companyCity = "80-287 Gdańsk, Poland";
companyTaxID = "PL2530164147";
contactName = "Piotr Król, 3mdeb CEO";
contactPhone = "+48 880 673 344 ";
contactMail = "[email protected]";
linkSite = "https://3mdeb.com";
linkPresentation = "https://3mdeb.com/company/about-us";
showLinkPresentation = '1';
showLinkSite = '1';
</script>
<link rel="stylesheet" type="text/css" href="remark-templates/3mdeb-report-template/css/style.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<style>
.pure-table thead {
background-color: #3D3D3D !important;
color: #ebebeb;
text-align: left;
vertical-align: bottom;
font-family:"montserratLight" ,sans-serif;
}
.th{
padding-top:9px!important;
padding-bottom:9px!important;
}
.pure-table td {
border-left: 1px solid #E2E2E2 !important;
border-left-width: 1px;
border-width: 0 0 0 1px;
border-left-width: 1px;
font-size: 9px !important;
margin: 0;
overflow: visible;
padding: 0.5em 0.6em !important;
}
.pure-table th {
border-left: 1px solid #3D3D3D !important;
border-left-width: 1px;
border-width: 0 0 0 1px;
border-left-width: 1px;
font-size: 8px !important;
margin: 0;
overflow: visible;
padding: 0.4em 0.8em !important;
}
.pure-table {
border:0px !important;
}
.pure-table table tbody{
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid #E2E2E2 !important;
}
.pure-table-bordered td {
border-bottom: 1px solid #cbcbcb;
}
.pure-table td, .pure-table th {
border-left: 1px solid #cbcbcb;
border-left-width: 1px;
border-width: 0 0 0 1px;
border-bottom-width: 0px;
border-left-width: 1px;
font-size: inherit;
margin: 0;
overflow: visible;
padding: .5em 1em;
}
.pure-table-striped tr:nth-child(2n-1) td {
background-color: #f2f2f2;
}
.flag-true{
width:15px;
height:15px;
background:url(remark-templates/3mdeb-report-template/images/accept.svg);
margin-left:auto;
margin-right:auto;
background-size:8px auto;
background-position:center center;
background-repeat:no-repeat;
}
.flag-false{
margin-left:auto;
margin-right:auto;
width:15px;
height:15px;
background:url(remark-templates/3mdeb-report-template/images/close.svg);
background-size:8px auto;
background-position:center center;
background-repeat:no-repeat;
}
h4{
font-weight: bold;
font-family: montserratBold;
font-size:12px;
}
</style>
</head>
<body>
<script src="remark-templates/3mdeb-report-template/js/remark.js">
</script>
<script src="remark-templates/3mdeb-report-template/js/jquery.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'beta-test-report.md',
slideNumberFormat: '%current%',
ratio: '827:1169'
});
slideshow.on('afterShowSlide', function (slide) {
$( ".remark-slide-content" ).each(function( index ) {
if($(this).hasClass( "intro")){
$(this).append("<div class='companyinfo'><p><b>" + companyName + "</b></p><p>" + companyStreet + "</p><p>" + companyCity + "</p> <p>TAX ID: " + companyTaxID + "</p></div>");
$(this).append("<div class='companycontact'><p><b>CONTACT</b></p> <p> " + contactName + " </p><p> " + contactPhone + " </p><p><a href='mailto:" + contactMail+ "'>" + contactMail+ "</a></p></div>");
$(this).append("<div class='companylinks'><div id='linksite'><a href='" + linkSite + "'><img src='remark-templates/3mdeb-report-template/images/monitor.svg' class='intro-icon'><br>Website</a></div><div id='linkpresentation'><a href='" + linkPresentation + "'><img class='intro-icon' src='remark-templates/3mdeb-report-template/images/website.svg'><br>About Us</a></div></div>");
if(showLinkPresentation == '1'){
}else{
$('#linkpresentation').remove();
}
if(showLinkSite== '1'){
}else{
$('#linksite').remove();
}
}else{
$( ".company-info" ).remove();
$( ".company-contact" ).remove();
$( ".company-links" ).remove();
};
});
});
</script>
</body>
</html>