-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
77 lines (68 loc) · 1.84 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
main {
box-sizing: border-box;
/*margin: 100px !important;*/
text-align: justify !important;
justify-content: center !important;
background-color: #f2f6ff !important;
padding-top: 0px;
padding-bottom: 30px;
padding-right: 30px;
padding-left: 30px;
}
body {
background-color: #ffffff !important;
}
nav {
background-color: #f2f6ff !important;
padding: 20px;
}
pre {
background-color: #EBEFF4;
}
/* Styles pour les caption des images fixes*/
figcaption {
text-align: center;
color: grey; /* Vous pouvez ajuster la couleur en fonction de vos préférences */
font-size: 15px;
}
.path {
color: #237116;
font-family: "Consolas";
font-size: 16px;
}
.image {
max-width: 100%; /* Largeur maximale de l'image en pourcentage de l'espace disponible */
height: auto; /* Hauteur automatique pour conserver les proportions d'origine */
display: block; /* Pour centrer l'image horizontalement */
margin: 0 auto; /* Pour centrer l'image horizontalement */
}
.image-map-caption {
text-align: center;
color: grey; /* Vous pouvez ajuster la couleur en fonction de vos préférences */
font-size: 15px;
}
.button {
appearance: none;
background-color: #FAFBFC;
border: 1px solid rgba(27, 31, 35, 0.15);
border-radius: 6px;
box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
box-sizing: border-box;
color: #24292E;
cursor: pointer;
display: inline-block;
font-family: system-ui, "Segoe UI";
font-size: 17px;
font-weight: 500;
line-height: 20px;
list-style: none;
padding: 6px 16px;
position: relative;
/* transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
word-wrap: break-word; */
}