Skip to content

Commit

Permalink
5 actualy
Browse files Browse the repository at this point in the history
  • Loading branch information
owsko committed Jul 11, 2024
1 parent 00d6b84 commit ba2924f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 14 deletions.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<div class="bar2"></div>
<div class="bar3"></div>
<ul class="mobile-menu main-menu">
<li><a href="index.html">SERTCOAT.XYZ</a></li>
<li><a href="pages/contact.html">CONTACT ME</a></li>
<li class="text-r"><a href="index.html">SERTCOAT.XYZ</a></li>
<li class="text-l"><a href="pages/contact.html">CONTACT ME</a></li>
</ul>
</div>

Expand Down Expand Up @@ -70,7 +70,9 @@
allowfullscreen
></iframe>

<footer>incomplete</footer>
<footer>
<div style="font-size: smaller">incomplete</div>
</footer>
</div>

<script src="scripts/script_randomHeader.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions pages/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
<div class="bar2"></div>
<div class="bar3"></div>
<ul class="mobile-menu main-menu">
<li><a href="../../index.html">SERTCOAT.XYZ</a></li>
<li><a href="contact.html">CONTACT ME</a></li>
<li class="text-r"><a href="../../index.html">SERTCOAT.XYZ</a></li>
<li class="text-l"><a href="contact.html">CONTACT ME</a></li>
</ul>
</div>

Expand Down
8 changes: 1 addition & 7 deletions stylesheets/contact.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,8 @@ button:hover {
font-size: medium;
}

form:active {

}

@media (max-width: 800px) {
div {
text-align: center;
}

input {
width: 85vw;
margin-left: 5px;
Expand All @@ -135,6 +128,7 @@ form:active {

.contact {
margin-top: 0px;
text-align: center;
}

}
5 changes: 5 additions & 0 deletions stylesheets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,9 @@ footer {
#header-h1 {
font-size: 15px;
}

.main-menu li {
display: inline-block;
margin: 0 0 0 0;
}
}
20 changes: 18 additions & 2 deletions stylesheets/menuBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
.open .mobile-menu {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.750);
background-color: rgba(0, 0, 0, 0.8);
padding: 0;

}


Expand All @@ -54,6 +54,22 @@
height: calc(100vh - 50px);
width: 100%;
list-style-type: none;
margin: 0;
}


.mobile-menu li {
background-color: rgb(0, 0, 0, 0.9);
margin: 0 7svw 2px 7svw;
border-radius: 2px;
}

.text-r {
text-align: right;
}

.text-l {
text-align: left;
}

@media only screen and (max-width: 600px) {
Expand Down

0 comments on commit ba2924f

Please sign in to comment.