Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pakut2 committed Jan 7, 2021
1 parent b4367ab commit 5ffd8ba
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/Assets

config.xml
config.xml

manifest.json

service-worker.js
4 changes: 4 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("service-worker.js");
}

const navSlide = () => {
const burger = document.querySelector(".burger");
const nav = document.querySelector(".nav-links");
Expand Down
10 changes: 5 additions & 5 deletions directSearchStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ li:nth-of-type(2) {
transition: all 0.6s ease;
}

@media screen and (max-width: 1024px) {
/* @media screen and (max-width: 1024px) {
.nav-links {
width: 60%;
}
}
} */

@media screen and (max-width: 768px) {
@media screen and (max-width: 1024px) {
body {
overflow-x: hidden;
}
Expand Down Expand Up @@ -128,13 +128,13 @@ li:nth-of-type(2) {
form button {
position: absolute;
right: 0;
margin-right: 1.3rem;
margin-right: 3rem;
}
}

@media screen and (max-width: 480px) {
form button {
margin: 0;
margin: 1.3rem;
}
}

Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
/>
<link rel="stylesheet" href="./style.css" />
<link rel="icon" type="image/png" href="Assets/Dog.png" />
<link rel="manifest" href="manifest.json" />
<title>Bus Schedule</title>
</head>
<body>
Expand Down
8 changes: 4 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@ li:nth-of-type(3) {
transition: all 0.6s ease;
}

@media screen and (max-width: 1024px) {
/* @media screen and (max-width: 1024px) {
.nav-links {
width: 60%;
}
}
} */

@media screen and (max-width: 768px) {
@media screen and (max-width: 1024px) {
body {
overflow-x: hidden;
}
Expand Down Expand Up @@ -158,7 +158,7 @@ li:nth-of-type(3) {
form button {
position: absolute;
right: 0;
margin-right: 1.3rem;
margin-right: 3rem;
}

li:nth-of-type(3) {
Expand Down

0 comments on commit 5ffd8ba

Please sign in to comment.