This commit is contained in:
brausjonas
2023-03-26 03:00:39 +02:00
parent 28e62f6b3c
commit 1727e5356c
3 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -61,7 +61,7 @@
<updated>1679674447095</updated> <updated>1679674447095</updated>
<workItem from="1679674448294" duration="3278000" /> <workItem from="1679674448294" duration="3278000" />
<workItem from="1679754546660" duration="3762000" /> <workItem from="1679754546660" duration="3762000" />
<workItem from="1679776338023" duration="7774000" /> <workItem from="1679776338023" duration="8024000" />
</task> </task>
<servers /> <servers />
</component> </component>
+6 -3
View File
@@ -24,9 +24,8 @@
<!--Mobile--> <!--Mobile-->
<button onclick="showMobileMenuBar()" id="mobileMenuBarButton"> <button onclick="showMobileMenuBar()" id="mobileMenuBarButton">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-three-dots" <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-list" viewBox="0 0 16 16">
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"/>
<path d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</svg> </svg>
</button> </button>
</nav> </nav>
@@ -36,6 +35,8 @@
<menu id="mobileMenuBar"> <menu id="mobileMenuBar">
<div> <div>
<ul> <ul>
<li class="highlighted">Home</li>
<li>Games</li> <li>Games</li>
<li>Quicklinks</li> <li>Quicklinks</li>
@@ -45,6 +46,8 @@
</div> </div>
</menu> </menu>
<!--Menu Ends here-->
<div class="contentArea"> <div class="contentArea">
<h1 id="mainHeader">We create games like back in the days</h1> <h1 id="mainHeader">We create games like back in the days</h1>
+9 -3
View File
@@ -59,9 +59,10 @@ header button:hover {
background-color: #B6E2A1; background-color: #B6E2A1;
} }
.highlighted @media (min-width: 18.1cm) {
{ .highlighted {
color: #F7A4A4; color: #F7A4A4;
}
} }
/*Mobile Excluded*/ /*Mobile Excluded*/
@@ -132,4 +133,9 @@ Mobile
menu div ul li:hover { menu div ul li:hover {
background-color: #B6E2A1; background-color: #B6E2A1;
} }
.highlighted
{
background-color: #B6E2A1;
}
} }