-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (43 loc) · 793 Bytes
/
style.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
/* Background color */
.bg-jungleGreen{
background-color: #000F08;
}
.bg-grey{
background-color: #9CAEA9;
}
/* Fonts */
.icelandFont{
font-family: 'Iceland', cursive;
}
/* Taille du header */
header{
height: 150px;
}
/* Masque du titre écran S et M */
.formatTitreS{
display: none;
}
/* Media Screen */
/* Affichage du header format normal */
@media screen and (max-width:990px){
.imgPierrick{
width: 200px;
height: 200px;
margin-top: 35px;
}
.formatTitreL{
display : block;
}
}
/* Affichage du header format écran S et M */
@media screen and (max-width:380px){
.formatTitreL{
display: none;
}
.formatTitreS{
display: block;
}
.imgPierrick{
margin-top: -10px;
}
}