Skip to content

Commit 11a27b8

Browse files
committed
fix ?
1 parent 7210348 commit 11a27b8

File tree

2 files changed

+87
-7
lines changed

2 files changed

+87
-7
lines changed

pages/style.css

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,17 @@ body {
1717
}
1818
.nav-link ul {
1919
display: flex;
20-
flex-wrap: wrap;
2120
justify-content: center;
22-
padding: 0;
2321
list-style: none;
22+
padding: 0;
23+
}
24+
25+
.menu-toggle {
26+
display: none;
27+
background: none;
28+
border: none;
29+
font-size: 1.5rem;
30+
cursor: pointer;
2431
}
2532
.nav-link a {
2633
font-size: 40px;
@@ -48,7 +55,8 @@ body {
4855
}
4956

5057
.footer-basic {
51-
padding:40px 0;
58+
text-align: center;
59+
padding: 20px;
5260
background-color:#000000;
5361
color:#4b4c4d;
5462
}
@@ -72,6 +80,10 @@ body {
7280
color:inherit;
7381
opacity:0.75;
7482
}
83+
.footer-basic .social a {
84+
display: inline-block;
85+
margin: 0 10px;
86+
}
7587

7688
.footer-basic .social > a:hover {
7789
opacity:0.9;
@@ -123,6 +135,10 @@ footer {
123135
border: 2px solid #ff4a03;
124136

125137
}
138+
img {
139+
max-width: 100%;
140+
height: auto;
141+
}
126142

127143
h1 {
128144
font-family: Arial, Helvetica, sans-serif;
@@ -473,6 +489,23 @@ img {
473489
padding: 10px;
474490
text-align: center;
475491
}
492+
.nav-link ul {
493+
display: none;
494+
flex-direction: column;
495+
background-color: #f4f4f4;
496+
padding: 10px;
497+
}
498+
499+
.nav-link ul.active {
500+
display: flex;
501+
}
502+
503+
.menu-toggle {
504+
display: block;
505+
}
506+
.footer-basic .social a {
507+
margin: 5px;
508+
}
476509
}
477510

478511
@media (max-width: 480px) {

style.css

Lines changed: 51 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,17 @@ body {
1717
}
1818
.nav-link ul {
1919
display: flex;
20-
flex-wrap: wrap;
2120
justify-content: center;
22-
padding: 0;
2321
list-style: none;
22+
padding: 0;
23+
}
24+
25+
.menu-toggle {
26+
display: none;
27+
background: none;
28+
border: none;
29+
font-size: 1.5rem;
30+
cursor: pointer;
2431
}
2532
.nav-link a {
2633
font-size: 40px;
@@ -57,7 +64,8 @@ body {
5764
margin-top: 20%;
5865
}
5966
.footer-basic {
60-
padding:40px 0;
67+
text-align: center;
68+
padding: 20px;
6169
background-color:#000000;
6270
color:#4b4c4d;
6371
}
@@ -81,6 +89,10 @@ body {
8189
color:inherit;
8290
opacity:0.75;
8391
}
92+
.footer-basic .social a {
93+
display: inline-block;
94+
margin: 0 10px;
95+
}
8496

8597
.footer-basic .social > a:hover {
8698
opacity:0.9;
@@ -127,7 +139,10 @@ footer {
127139
padding-top: 40px;
128140

129141
}
130-
142+
img {
143+
max-width: 100%;
144+
height: auto;
145+
}
131146

132147
h1 {
133148
font-family: Arial, Helvetica, sans-serif;
@@ -236,6 +251,38 @@ li {
236251
padding: 10px;
237252
text-align: center;
238253
}
254+
255+
.nav-link ul {
256+
display: none;
257+
flex-direction: column;
258+
background-color: #f4f4f4;
259+
padding: 10px;
260+
}
261+
262+
.nav-link ul.active {
263+
display: flex;
264+
}
265+
266+
.menu-toggle {
267+
display: block;
268+
}
269+
.propos h2, .Art h2, #dev h2 {
270+
font-size: 1.5rem;
271+
text-align: center;
272+
}
273+
274+
.propos h3, .Art h3, #dev h3 {
275+
font-size: 1rem;
276+
padding: 10px;
277+
}
278+
279+
.Art li {
280+
text-align: center;
281+
margin: 5px 0;
282+
}
283+
.footer-basic .social a {
284+
margin: 5px;
285+
}
239286
}
240287

241288
@media (max-width: 480px) {

0 commit comments

Comments
 (0)