blob: a55449a07c92cc632752709a34d43fbb0a687f91 (
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
|
header
{
text-align: center;
/*padding-top: 5px;*/
/*padding-bottom: 10px;*/
background-image: url('../assets/fond-piscine.jpg');
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;
}
.header-content
{
padding: 20px 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: end;
}
.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;
}
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;
}
.social img
{
width: 25px;
background-color: #ffffffb3;
border-radius: 50%;
}
.social img:hover
{
background-color: yellow;
}
|