-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparcours.css
More file actions
75 lines (61 loc) · 1015 Bytes
/
parcours.css
File metadata and controls
75 lines (61 loc) · 1015 Bytes
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
.contenu form {
margin-bottom: 20px;
}
fieldset {
padding: 10px;
text-align: center;
display: flex;
justify-content: space-around;
margin-bottom: 10px;
}
.contenu {
margin-top: 100px !important;
}
.gap{
min-height:20vh;
}
legend {
font-weight: bold;
}
input[type="radio"]:checked+label {
background-color: #ea5c0d;
transform: translate(5px, 5px) !important;
box-shadow: none;
}
input[type="radio"] {
display: none;
}
.contenu label {
display: block;
margin-bottom: 10px;
background-color: #f7af3e;
padding: 10px;
border-radius: 10px;
box-shadow: 4px 5px 3px #ea780d;
}
.btncarte {
font-size: 20px;
margin: auto;
display: block;
margin-top: 10px;
padding: 10px 20px;
background-color: #ea5c0d;
color: #ffffff;
border: none;
border-radius: 10px;
cursor: pointer;
}
.map {
display: none;
}
.map.mapactive {
display: block;
}
#reponsesuser {
margin-bottom: 20px;
}
@media screen and (min-height: 2500px) {
.gap{
min-height:100vh;
}
}