-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.css
More file actions
92 lines (82 loc) · 1.7 KB
/
admin.css
File metadata and controls
92 lines (82 loc) · 1.7 KB
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
.multibox {
display: flex;
width: 100%;
margin-bottom: 20px;
flex-direction: row;
flex-wrap: wrap;
min-width: 875px;
justify-content: space-between;
}
a .carte {
display: flex;
border-radius: 20px;
margin-left: 10px;
margin-right: 10px;
height: 300px;
flex: 1;
transition: 0.5s all ease;
font-family: 'dyno_saurB';
font-size: 2em;
align-items: center;
}
.mb-hotel {
background: linear-gradient(to bottom right,#dd7d7d, #b9701c);
box-shadow: 5px 5px #8f6d2d;
}
.mb-resto {
background: linear-gradient(to bottom right,#c3ec52, #0ba29d);
box-shadow: 5px 5px #31afab;
}
.mb-spots {
background: linear-gradient(to bottom right,#52c8ec, #184e68);
box-shadow: 5px 5px #386dd1;
}
.mb-lieux {
background: linear-gradient(to bottom right,#f1d532, #ebb319);
box-shadow: 5px 5px #ddd012;
}
.carte:hover {
flex: 2;
}
.emoji {
margin: auto;
font-size: 3em;
text-align: center;
width: 50%;
}
.a:hover > .emoji-legende {
display: block;
}
.emoji-legende {
text-align: center;
margin-right: 20px;
font-weight: bold;
}
@media (max-width: 1220px){
.multibox {
flex-direction: column;
width: 100%;
min-width: 280px;
margin-top: 25px;
margin-bottom: 25px;
}
.emoji {
width: auto;
margin: 0;
}
.emoji-legende {
text-align: center;
display: block;
margin-right: 20px;
font-weight: bold;
}
.carte {
justify-content: space-evenly;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px;
font-size: 1.5em;
margin-left: 0px;
margin-right: 0px;
}
}