Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik-developer authored Sep 3, 2024
1 parent 32f0dad commit 321f398
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
@import url(main.css);
@import url(nav.css);
@import url(footer.css);
*/
@import url(links.css);
@import url(center.css);

*/
/* Some features have just been introduced and may not work or cause problems. Any problems or bugs should be reported as soon as possible so that they can be fixed. You can report them by opening a new issue in the library repository. Link to the ropository: https://github.com/Dominik-developer/css_library */

body {
Expand Down Expand Up @@ -57,15 +57,15 @@ header {
/* screens width up to 768px : tablets */
@media (max-width: 768px) {
header {
width: 80vw;
padding: 15px;
width: 90vw;
padding: 10px;
}
}

/* screens width up to 480px : smartphones */
@media (max-width: 480px) {
header {
width: 100vw;
width: 90vw;
padding: 10px;
}
}
Expand All @@ -90,22 +90,22 @@ header {
@media (max-width: 1200px) {
main {
width: 90vw;
/* margin: 0 auto; */
margin: 0 auto;
}
}

/* screens width up to 768px : tablets */
@media (max-width: 768px) {
main {
width: 80vw;
padding: 15px;
width: 90vw;
padding: 10px;
}
}

/* screens width up to 480px : smartphones */
@media (max-width: 480px) {
main {
width: 100vw;
width: 90vw;
padding: 10px;
}
}
Expand All @@ -129,22 +129,22 @@ header {
@media (max-width: 1200px) {
footer {
width: 90vw;
/* margin: 0 auto; */
margin: 0 auto;
}
}

/* screens width up to 768px : tablets */
@media (max-width: 768px) {
footer {
width: 80vw;
padding: 15px;
width: 90vw;
padding: 10px;
}
}

/* screens width up to 480px : smartphones */
@media (max-width: 480px) {
footer {
width: 100vw;
width: 90vw;
padding: 10px;
}
}

0 comments on commit 321f398

Please sign in to comment.