metanorma-bipm 2.7.3 → 2.7.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/isodoc/bipm/bipm.brochure.xsl +610 -157
- data/lib/isodoc/bipm/bipm.guide.xsl +610 -157
- data/lib/isodoc/bipm/bipm.mise-en-pratique.xsl +610 -157
- data/lib/isodoc/bipm/bipm.rapport.xsl +610 -157
- data/lib/isodoc/bipm/html/htmlstyle.css +27 -31
- data/lib/isodoc/bipm/jcgm.standard.xsl +610 -159
- data/lib/isodoc/bipm/presentation_footnotes.rb +5 -6
- data/lib/metanorma/bipm/front.rb +2 -8
- data/lib/metanorma/bipm/isodoc.rng +44 -19
- data/lib/metanorma/bipm/version.rb +1 -1
- metadata +2 -2
|
@@ -145,16 +145,6 @@ div.document-stage-band, div.document-type-band {
|
|
|
145
145
|
background-color: #333333;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
a.FootnoteRef + a.FootnoteRef::before {
|
|
149
|
-
content: ", ";
|
|
150
|
-
vertical-align: super;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
a.TableFootnoteRef + a.TableFootnoteRef::before {
|
|
154
|
-
content: ", ";
|
|
155
|
-
vertical-align: super;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
148
|
a.TableFootnoteRef, span.TableFootnoteRef,
|
|
159
149
|
a.FootnoteRef, span.FootnoteRef {
|
|
160
150
|
vertical-align: super;
|
|
@@ -477,11 +467,13 @@ body {
|
|
|
477
467
|
line-height: 1.4em;
|
|
478
468
|
color: #1d1d1d;
|
|
479
469
|
background-color: #ffffff;
|
|
480
|
-
font-weight: 400;
|
|
481
470
|
}
|
|
482
471
|
body main {
|
|
483
472
|
margin: 0 3em 0 6em;
|
|
484
473
|
}
|
|
474
|
+
body {
|
|
475
|
+
font-weight: 400;
|
|
476
|
+
}
|
|
485
477
|
body pre * {
|
|
486
478
|
font-family: {{bodyfont}} !important;
|
|
487
479
|
}
|
|
@@ -493,10 +485,6 @@ main {
|
|
|
493
485
|
/*
|
|
494
486
|
2. Responsive navigation layout
|
|
495
487
|
*/
|
|
496
|
-
#toc, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
|
497
|
-
font-family: {{bodyfont}};
|
|
498
|
-
font-weight: 400;
|
|
499
|
-
}
|
|
500
488
|
#toc ul, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) ul {
|
|
501
489
|
margin: 0;
|
|
502
490
|
padding: 0;
|
|
@@ -548,6 +536,10 @@ main {
|
|
|
548
536
|
color: black;
|
|
549
537
|
}
|
|
550
538
|
}
|
|
539
|
+
#toc, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
|
540
|
+
font-family: {{bodyfont}};
|
|
541
|
+
font-weight: 400;
|
|
542
|
+
}
|
|
551
543
|
@media screen and (max-width: 768px) {
|
|
552
544
|
#toc, #toc > ul :is(.h1, .h2, .h3, .h4, .h5, .h6) {
|
|
553
545
|
padding: 0 1.5em;
|
|
@@ -652,12 +644,6 @@ main {
|
|
|
652
644
|
margin: 0;
|
|
653
645
|
}
|
|
654
646
|
}
|
|
655
|
-
div.figure {
|
|
656
|
-
line-height: 1.6em;
|
|
657
|
-
padding: 1.5em;
|
|
658
|
-
margin: 2em 0 1em 0;
|
|
659
|
-
overflow: auto;
|
|
660
|
-
}
|
|
661
647
|
div.figure .FigureTitle, div.figure .figure-title {
|
|
662
648
|
font-weight: 700;
|
|
663
649
|
font-size: 1em;
|
|
@@ -670,6 +656,12 @@ div.figure > img, div.figure > svg {
|
|
|
670
656
|
max-width: 100%;
|
|
671
657
|
height: auto;
|
|
672
658
|
}
|
|
659
|
+
div.figure {
|
|
660
|
+
line-height: 1.6em;
|
|
661
|
+
padding: 1.5em;
|
|
662
|
+
margin: 2em 0 1em 0;
|
|
663
|
+
overflow: auto;
|
|
664
|
+
}
|
|
673
665
|
|
|
674
666
|
table div.figure {
|
|
675
667
|
padding: 0;
|
|
@@ -1005,6 +997,13 @@ p.Biblio, p.NormRef {
|
|
|
1005
997
|
/*
|
|
1006
998
|
3.6 Source Code + figures
|
|
1007
999
|
*/
|
|
1000
|
+
.figure .SourceTitle,
|
|
1001
|
+
pre .SourceTitle,
|
|
1002
|
+
.pseudocode .SourceTitle {
|
|
1003
|
+
font-weight: 700;
|
|
1004
|
+
font-size: 1em;
|
|
1005
|
+
text-align: center;
|
|
1006
|
+
}
|
|
1008
1007
|
.figure,
|
|
1009
1008
|
pre,
|
|
1010
1009
|
.pseudocode {
|
|
@@ -1015,13 +1014,6 @@ pre,
|
|
|
1015
1014
|
margin: 2em 0 1em 0;
|
|
1016
1015
|
overflow: auto;
|
|
1017
1016
|
}
|
|
1018
|
-
.figure .SourceTitle,
|
|
1019
|
-
pre .SourceTitle,
|
|
1020
|
-
.pseudocode .SourceTitle {
|
|
1021
|
-
font-weight: 700;
|
|
1022
|
-
font-size: 1em;
|
|
1023
|
-
text-align: center;
|
|
1024
|
-
}
|
|
1025
1017
|
|
|
1026
1018
|
pre {
|
|
1027
1019
|
font-family: {{monospacefont}};
|
|
@@ -1075,12 +1067,14 @@ pre {
|
|
|
1075
1067
|
padding: 1.2em;
|
|
1076
1068
|
margin: 2em 0 1em 0;
|
|
1077
1069
|
text-align: left;
|
|
1078
|
-
color: #424242;
|
|
1079
|
-
padding-left: 2.7em;
|
|
1080
1070
|
}
|
|
1081
1071
|
.example p {
|
|
1082
1072
|
margin: 0;
|
|
1083
1073
|
}
|
|
1074
|
+
.example {
|
|
1075
|
+
color: #424242;
|
|
1076
|
+
padding-left: 2.7em;
|
|
1077
|
+
}
|
|
1084
1078
|
.example .example-title {
|
|
1085
1079
|
font-weight: 700;
|
|
1086
1080
|
text-transform: uppercase;
|
|
@@ -1362,7 +1356,6 @@ To top button
|
|
|
1362
1356
|
cursor: pointer;
|
|
1363
1357
|
padding: 10px 15px 10px 15px;
|
|
1364
1358
|
border-radius: 4px;
|
|
1365
|
-
text-transform: uppercase;
|
|
1366
1359
|
}
|
|
1367
1360
|
#myBtn:hover {
|
|
1368
1361
|
opacity: 1;
|
|
@@ -1372,6 +1365,9 @@ To top button
|
|
|
1372
1365
|
display: none;
|
|
1373
1366
|
}
|
|
1374
1367
|
}
|
|
1368
|
+
#myBtn {
|
|
1369
|
+
text-transform: uppercase;
|
|
1370
|
+
}
|
|
1375
1371
|
#myBtn a.anchorjs-link:hover {
|
|
1376
1372
|
background: none;
|
|
1377
1373
|
color: #485094;
|