-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcartesAideMémoire.css
134 lines (113 loc) · 2.09 KB
/
cartesAideMémoire.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
body {
font-family: 'Roboto', serif;
}
p {
margin-top: 5px;
margin-bottom: 5px;
}
.textePrincipale {
font-size: 24px;
grid-column: 1 / span 3;
width: 500px;
min-height: 250px;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
border: thick double #000000;
}
.imagePrincipale {
object-fit: contain;
height: 100%;
width: 100%;
max-width: 480px;
max-height: 230px;
}
.remplirÉcran {
width: calc(100vw - 40px);
height: calc(100vh - 170px);
max-width: unset;
max-height: unset;
}
.divCarte {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
}
.inputNombre {
max-width: 100px;
}
.checkbox {
max-width: 20px;
}
.centrer {
text-align: center;
}
.celluleTableau {
margin-left: auto;
margin-right: auto;
}
button.celluleTableau, .celluleTableau button {
width: 200px;
height: 50px;
border-radius: 20px;
font-size: 35px;
}
.titre {
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
font-size: xxx-large;
}
.soustitre {
text-align: center;
font-size: xx-large;
}
.titreDeColonne {
text-align: center;
font-weight: bold;
font-size: larger;
}
.boiteConfiguration {
border: solid #000000;
width: 490px;
margin-left: auto;
margin-right: auto;
}
#divListeDEnsembles {
display: grid;
grid-template-columns: 30px 1fr;
}
#paramètresConfiguration {
display: grid;
grid-template-columns: 320px 170px;
row-gap: 10px;
text-align: right;
align-items: center;
}
#conteneurDeListeDEnsembles {
grid-column: 1 / span 2;
text-align: left;
margin-left: 5px;
}
#éditeur_caractéristiques {
display: grid;
grid-template-columns: 1fr 1fr;
max-width: 80%;
text-align: right;
row-gap: 10px;
}
label {
padding-right: 10px;
}
#divÉditeurQuestions {
display: grid;
grid-template-columns: 1fr 150px 1fr 150px;
row-gap: 10px;
}
.hidden {
display: none;
}