codevdesign 0.0.86 → 0.0.88
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.
- package/assets/csqc.css +8 -7
- package/package.json +1 -1
package/assets/csqc.css
CHANGED
|
@@ -2,20 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
/* titre design qc avec ligne orange*/
|
|
4
4
|
.headline {
|
|
5
|
-
color: #223654
|
|
6
|
-
font-weight: 600
|
|
5
|
+
color: #223654;
|
|
6
|
+
font-weight: 600;
|
|
7
|
+
display: inline-block; /* largeur du texte */
|
|
8
|
+
position: relative; /* pour positionner le ::after */
|
|
7
9
|
}
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
.headline:after {
|
|
11
|
+
.headline::after {
|
|
11
12
|
content: '';
|
|
12
13
|
display: block;
|
|
13
|
-
|
|
14
|
-
width: 2.8rem;
|
|
15
|
-
padding-top: 0.3rem;
|
|
14
|
+
width: 2.8rem; /* ligne fixe */
|
|
16
15
|
border-bottom: 3px solid #f09686;
|
|
16
|
+
margin-top: 0.3rem; /* espace entre texte et ligne */
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
|
|
19
20
|
/* pour afficher une étoile après le label*/
|
|
20
21
|
.required:after {
|
|
21
22
|
content: ' *';
|