This commit is contained in:
brausjonas
2023-03-25 16:16:01 +01:00
parent 6a4e01b51d
commit 9cc4dc621e
3 changed files with 128 additions and 5 deletions
+1 -1
View File
@@ -51,7 +51,7 @@
<option name="presentableId" value="Default" /> <option name="presentableId" value="Default" />
<updated>1679674447095</updated> <updated>1679674447095</updated>
<workItem from="1679674448294" duration="3278000" /> <workItem from="1679674448294" duration="3278000" />
<workItem from="1679754546660" duration="791000" /> <workItem from="1679754546660" duration="2767000" />
</task> </task>
<servers /> <servers />
</component> </component>
+92 -2
View File
@@ -17,12 +17,17 @@ li, a, button
text-decoration: none; text-decoration: none;
} }
@media only screen and (max-width: 10cm) @media only screen and (max-width: 18cm)
{ {
li, a, button li, a, button
{ {
font-size: 25px; font-size: 25px;
} }
.hideOnMobile
{
display: none;
}
} }
header header
@@ -39,6 +44,14 @@ header
list-style: none; list-style: none;
} }
@media only screen and (max-width: 18cm)
{
.navLinks
{
display: none;
}
}
.navLinks li .navLinks li
{ {
cursor: pointer; cursor: pointer;
@@ -116,8 +129,85 @@ body
text-align: center; text-align: center;
} }
@media only screen and (max-width: 18cm)
{
.dropdown div ul li
{
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
padding: 0;
}
.dropdown div ul li
{
margin-top: 5px;
margin-bottom: 5px;
text-align: center;
padding: 0;
}
.dropdown div
{
right: 150px;
border-radius: 50px 0px 0 50px;
top: 10px;
}
}
.dropdown:hover div ul, .dropdown:hover div .dropdown:hover div ul, .dropdown:hover div
{ {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.mobileMenuButton
{
background-color: rgba(0, 0, 0, 0);
display: none;
}
@media only screen and (max-width: 18cm)
{
.mobileMenuButton
{
display: inline-block;
}
}
.mobileMenuButton svg
{
width: 50px;
height: 50px;
position: absolute;
right: 30px;
top: 30px
}
.mobileMenuDropDown
{
display: none;
background-color: #24242A;
}
.mobileMenuDropDown li
{
list-style: none;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
padding: 20px;
}
.mobileMenuButton:hover .mobileMenuDropDown
{
display: flex;
flex-direction: column;
position: absolute;
right: 0;
height: 100vh;
margin-top: 20px;
}
+35 -2
View File
@@ -15,8 +15,12 @@
Games Games
<div> <div>
<ul> <ul>
<li><button>FlufflParty</button></li> <li>
<li><button>Coming Soon</button></li> <button>FlufflParty</button>
</li>
<li>
<button>More</button>
</li>
</ul> </ul>
</div> </div>
</li> </li>
@@ -28,6 +32,35 @@
<a href="#"> <a href="#">
<button>IO Game Studios</button> <button>IO Game Studios</button>
</a> </a>
<div class="mobileMenuButton">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-list"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/>
</svg>
<div class="mobileMenuDropDown">
<ul>
<li class="dropdown">
Games
<div>
<ul>
<li>
<button>FlufflParty</button>
</li>
<li>
<button>More</button>
</li>
</ul>
</div>
</li>
<li><a href="#">Quicklinks</a></li>
<li><a href="#">About Us</a></li>
</ul>
</div>
</div>
</header> </header>