-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (94 loc) · 1.47 KB
/
styles.css
File metadata and controls
114 lines (94 loc) · 1.47 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
html {
scroll-behavior: smooth;
}
.banner-image {
width: 60%;
height: auto;
border-bottom: 5px solid #faf9ed;
}
.tarifs-ski-snow {
width: 70%;
}
nav {
font-size: 1.5em;
}
.content-section {
width: 70%;
margin: 0 auto;
}
@media (max-width: 768px) {
.banner-image {
width: 90%;
}
.tarifs-ski-snow {
width: 90%;
}
nav {
font-size: 0.9em;
}
.content-section {
width: 80%;
margin: 0 auto; /* Centrer horizontalement */
padding: 20px; /* Optionnel, pour un peu d'espace interne */
}
}
body {
font-family: 'Avenir', sans-serif;
background-color: #faf9ed;
color: #2E4057;
margin: 0;
padding: 0;
}
.important {
font-weight: bold; /* Gras */
}
header {
background-color: #b1cfcd;
color: #FFF;
padding: 20px;
text-align: center;
}
header h1 {
font-family: 'Din Condensed', sans-serif;
font-size: 2.5em;
}
ul {
list-style-position: inside;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 10px;
}
nav ul li a {
color: #faf9ed;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
main {
padding: 20px;
}
h2 {
color: #e93d2f;
}
a#insta {
color: #e93d2f;
}
footer {
background-color: #b1cfcd;
color: #FFF;
text-align: center;
padding: 10px;
}
footer a {
color: #A8DADC;
}
footer p {
margin: 0;
}