blob: be938bb99809512fc4067789f18037e3f42bc10b (
plain)
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
|
header
{
text-align: center;
/*padding-top: 5px;*/
/*padding-bottom: 10px;*/
background-size: cover; /* largeur du bloc_page */
}
#nav_zone
{
/*margin: auto;*/
/*max-width: 1200px;*/
display: flex;
/*align-items: center;*/ /* conflit possible avec .social align-self */
justify-content: center;
}
.nav_button{
display: none;
}
.header-content
{
padding: 20px 0;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
align-items: end;
}
@media screen and (max-width: 1000px){
.header-content{
padding: 18px 0;
}
}
@media screen and (max-width: 450px){
.header-content
{
/*grid-template-columns: 1fr 2fr 1fr;*/
display: block;
padding: 18px;
}
.head_logo
{
display: none;
}
}
.site_title
{
background-color: #ffffff7f;
border-radius: 10px;
}
header h1
{
font-size: x-large;
margin: 10px;
}
header h2
{
font-size: medium; /* défaut = x-large */
margin: 10px;
}
@media screen and (max-width: 1000px){
header h1, header h2
{
margin: 8px;
}
}
header img
{
vertical-align: bottom; /* supprime espace sous l'image */
max-width: 150px;
max-height: 75px;
}
header a
{
color: unset; /* ne plus hériter */
text-decoration: none;
}
.social
{
/*align-self: end;*/
/*padding: 4px;*/
}
.social img
{
width: 25px;
background-color: #ffffffb3;
border-radius: 50%;
}
.social img:hover
{
background-color: yellow;
}
|