Compare commits
2 commits
126b6a9ea7
...
ca20ac2637
Author | SHA1 | Date | |
---|---|---|---|
ca20ac2637 | |||
b0f83c5622 |
2 changed files with 38 additions and 22 deletions
|
@ -39,23 +39,45 @@ section.page-body {
|
||||||
|
|
||||||
.card-body {
|
.card-body {
|
||||||
order: 1;
|
order: 1;
|
||||||
|
max-width: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-header {
|
.card-header {
|
||||||
order: 2;
|
order: 2;
|
||||||
|
min-width: 35%;
|
||||||
}
|
}
|
||||||
|
|
||||||
h5 {
|
h1 {
|
||||||
margin: 1.5em 0em;
|
margin: 1em 0em 0.1em 0em;;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-size: 2.6em;
|
font-size: 2.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p.prodotti {
|
||||||
|
background: gold;
|
||||||
|
padding: 0.1em 0.5em;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
p.tratteggio {
|
||||||
|
border-bottom: dotted;
|
||||||
|
transform: rotate(1deg) translate(-17px, 0px);
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
margin-bottom: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.info {
|
||||||
|
line-height: 1;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.uppercase {
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
span.info {
|
span.info {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
|
|
@ -96,11 +96,16 @@ function Aziende(stringexel) {
|
||||||
|
|
||||||
/*parte anagrafica e prodotti*/
|
/*parte anagrafica e prodotti*/
|
||||||
|
|
||||||
var schede_h5 = header_schede.append("h5")
|
var schede_h1 = header_schede.append("h1")
|
||||||
.attr("class", "mb-0 realeinfo")
|
.attr("class", "mb-0 realeinfo")
|
||||||
.text(function(d) {
|
.text(function(d) {
|
||||||
return "" + d["your-name"].replace(/"/g, ""); // Concatenazione di stringhe, sempre con il "+".
|
return "" + d["your-name"].replace(/"/g, ""); // Concatenazione di stringhe, sempre con il "+".
|
||||||
});
|
});
|
||||||
|
header_schede.append("p")
|
||||||
|
.attr("class", "luogo")
|
||||||
|
.text(function(d) {
|
||||||
|
return " " + d["text-122"].replace(/"/g, "")+ ""+ d["your-subject"].replace(/"/g, "") + " (" + d["text-597"].replace(/"/g, "") + ")";
|
||||||
|
});
|
||||||
|
|
||||||
header_schede.append("p")
|
header_schede.append("p")
|
||||||
.append("span")
|
.append("span")
|
||||||
|
@ -121,18 +126,7 @@ function Aziende(stringexel) {
|
||||||
.html(function(d) {
|
.html(function(d) {
|
||||||
return " " + d["url-933"].replace(/"/g, "");
|
return " " + d["url-933"].replace(/"/g, "");
|
||||||
});
|
});
|
||||||
header_schede.append("p")
|
|
||||||
.text("Località: ");
|
|
||||||
header_schede.append("span")
|
|
||||||
.attr("class", "")
|
|
||||||
.text(function(d) {
|
|
||||||
return " " + d["text-122"].replace(/"/g, "");
|
|
||||||
});
|
|
||||||
header_schede.append("span")
|
|
||||||
.attr("class", "locoinfo")
|
|
||||||
.html(function(d) {
|
|
||||||
return " " + d["your-subject"].replace(/"/g, "") + " (" + d["text-597"].replace(/"/g, "") + ")";
|
|
||||||
});
|
|
||||||
header_schede.append("p")
|
header_schede.append("p")
|
||||||
.append("span")
|
.append("span")
|
||||||
.attr("class", "info")
|
.attr("class", "info")
|
||||||
|
@ -143,7 +137,7 @@ function Aziende(stringexel) {
|
||||||
});
|
});
|
||||||
header_schede.append("p")
|
header_schede.append("p")
|
||||||
.append("span")
|
.append("span")
|
||||||
.attr("class", "")
|
.attr("class", "uppercase")
|
||||||
.text("SAU:")
|
.text("SAU:")
|
||||||
.append("span")
|
.append("span")
|
||||||
.text(function(d) {
|
.text(function(d) {
|
||||||
|
@ -167,19 +161,19 @@ function Aziende(stringexel) {
|
||||||
});
|
});
|
||||||
header_schede.append("p")
|
header_schede.append("p")
|
||||||
.append("span")
|
.append("span")
|
||||||
.attr("class", "info")
|
.attr("class", "info uppercase")
|
||||||
.text("Mercati svolti:")
|
.text("Mercati:")
|
||||||
.append("span")
|
.append("span")
|
||||||
.text(function(d) {
|
.text(function(d) {
|
||||||
return " " + d["Mercati svolti"].replace(/"/g, "");
|
return " " + d["Mercati svolti"].replace(/"/g, "");
|
||||||
});
|
});
|
||||||
|
|
||||||
header_schede.append("p").attr("spazio");
|
|
||||||
|
|
||||||
header_schede.append("p")
|
header_schede.append("p")
|
||||||
|
.attr("class", "prodotti")
|
||||||
.append("span")
|
.append("span")
|
||||||
.attr("class", "info")
|
.attr("class", "info uppercase")
|
||||||
.text("Prodotti:")
|
.text("Prodotti offerti:")
|
||||||
.append("span")
|
.append("span")
|
||||||
.text(function(d) {
|
.text(function(d) {
|
||||||
return " " + d["checkbox-101"].replace(/"/g, "");
|
return " " + d["checkbox-101"].replace(/"/g, "");
|
||||||
|
@ -192,7 +186,7 @@ function Aziende(stringexel) {
|
||||||
.text(function(d) {
|
.text(function(d) {
|
||||||
return " " + d["text-746"].replace(/"/g, "");
|
return " " + d["text-746"].replace(/"/g, "");
|
||||||
});
|
});
|
||||||
header_schede.append("p").attr("tratteggio");
|
header_schede.append("p").attr("class","tratteggio");
|
||||||
|
|
||||||
header_schede.append("p")
|
header_schede.append("p")
|
||||||
.append("span")
|
.append("span")
|
||||||
|
|
Loading…
Reference in a new issue