-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (71 loc) · 1.37 KB
/
styles.css
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
/* Définir les couleurs */
:root {
--color-orange: rgb(227, 108, 10);
--color-grey: rgb(128, 128, 128);
--color-purple: rgb(102, 0, 102);
--color-black: rgb(0, 0, 0);
--head-color: rgb(250, 192, 144);
}
/* Configure les marges de la page */
body {
margin: 1in;
}
/* Modification de l'en-tête */
header {
font-size: 8pt;
color: var(--head-color);
text-align: left;
padding: 10px 0;
}
/* Modification du pied de page */
footer {
font-size: 8pt;
color: var(--color-grey);
text-align: left;
position: fixed;
bottom: 0;
width: 100%;
background-color: white;
padding: 10px 0;
}
footer a {
color: var(--color-grey);
text-decoration: none;
}
/* Position des numéros de page */
.page-number {
text-align: right;
color: var(--color-grey);
}
/* Styles des sections et sous-sections */
h1 {
font-size: 14pt;
color: var(--color-orange);
}
h2 {
font-size: 12pt;
color: var(--color-grey);
}
h3 {
font-size: 11pt;
font-weight: bold;
font-style: italic;
color: var(--color-purple);
}
h4 {
font-size: 11pt;
font-weight: bold;
font-style: italic;
color: var(--color-black);
}
h5 {
font-size: 11pt;
font-style: italic;
color: var(--color-black);
}
/* Espacement des sous-paragraphes */
h5 {
margin-left: 2em;
margin-top: 1.25ex;
margin-bottom: 1em;
}