aboutsummaryrefslogtreecommitdiff
path: root/public/css/head.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/css/head.css')
-rw-r--r--public/css/head.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/public/css/head.css b/public/css/head.css
new file mode 100644
index 0000000..b8d4c93
--- /dev/null
+++ b/public/css/head.css
@@ -0,0 +1,59 @@
1header
2{
3 text-align: center;
4 /*padding-top: 5px;*/
5 /*padding-bottom: 10px;*/
6 background-image: url('../assets/fond-piscine.jpg');
7 background-size: cover; /* largeur du bloc_page */
8}
9header > div
10{
11 /*margin: auto;*/
12 /*max-width: 1200px;*/
13 display: flex;
14 /*align-items: center;*/ /* conflit possible avec .social align-self */
15 justify-content: space-around;
16}
17.header-content
18{
19 padding: 20px 0;
20}
21.site_title
22{
23 background-color: #ffffff7f;
24 border-radius: 10px;
25}
26header h1
27{
28 font-size: x-large;
29 margin: 10px;
30}
31header h2
32{
33 font-size: medium; /* défaut = x-large */
34 margin: 10px;
35}
36header img
37{
38 vertical-align: bottom; /* supprime espace sous l'image */
39}
40header a
41{
42 color: unset; /* ne plus hériter */
43 text-decoration: none;
44}
45.social
46{
47 align-self: end;
48}
49.social img
50{
51 width: 25px;
52 background-color: #ffffffb3;
53 border-radius: 10px;
54}
55
56.social img:hover
57{
58 background-color: #ffff00;
59}