mobile optimisation

This commit is contained in:
janis
2023-01-06 15:42:44 +01:00
parent 2c0c829f8e
commit 16524c843f
5 changed files with 198 additions and 106 deletions

View File

@@ -14,6 +14,7 @@ html, body {
height: 100%;
margin: 0;
padding: 0;
font-size: calc(14pt + 0.395vw);
}
body {
@@ -37,19 +38,20 @@ body {
Styling for the main content element
*/
.mainstyle {
margin-right: 10%;
margin-left: 10%;
margin-right: 5%;
margin-left: 5%;
margin-top: 2%;
margin-bottom: 2%;
padding: 10%;
padding-top: 5%;
padding-bottom: 5%;
padding: 5%;
padding-top: 3%;
padding-bottom: 3%;
border-color: black;
border-style: none;
border-radius: 50px;
background-color: rgba(195, 195, 229, 1);
}
/*
Styling for links and buttons
*/
@@ -99,14 +101,17 @@ body {
}
.title {
font-size: 350%;
text-align: center;
font-size: 2.3rem;
}
.subtitle {
font-size: 200%;
text-align: center;
font-size: 1.3rem;
}
.content {
font-size: 1rem;
width: 100%;
display: flex;
flex-direction: column;
@@ -117,12 +122,12 @@ body {
}
.content-title {
font-size: 300%;
font-size: 3rem;
text-align: center;
}
.content-title-small {
font-size: 200%;
font-size: 2rem;
text-align: center;
}
@@ -133,31 +138,6 @@ body {
width: 100%;
}
/*
Align content side by side
*/
.sidebyside {
width: 100%;
display: flex;
flex-grow: 1;
gap: 5%;
}
.element {
width: 47%;
text-align: center;
}
.itemsInline {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
gap: 5%;
margin-top: 3%;
margin-bottom: 3%;
}
/*
Bottom container styling
*/
@@ -168,4 +148,43 @@ body {
justify-content: center;
align-items: center;
flex-direction: column;
}
.element {
text-align: center;
}
@media only screen and (min-width: 999px) {
/*
Align content side by side
*/
.sidebyside {
width: 100%;
display: flex;
flex-grow: 1;
gap: 5%;
}
.element {
width: 47%;
}
.itemsInline {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
gap: 5%;
margin-top: 3%;
margin-bottom: 3%;
}
.mainstyle {
margin-right: 10%;
margin-left: 10%;
padding: 10%;
padding-top: 5%;
padding-bottom: 5%;
}
}

View File

@@ -7,17 +7,18 @@
*/
.Menu {
font-size: 0.8rem;
margin-top: -1%;
padding: 2%;
padding-left: 0;
padding-right: 0;
width: 100%;
overflow: hidden;
background-color: #38444d;
background-color: rgba(56, 68, 77, 1);
}
.logo {
width: 5%;
height: 10vh;
display: inline-block;
margin-left: 2%;
position: relative;
@@ -25,85 +26,137 @@
}
.menu-container {
display: inline-flex;
list-style-type: none;
width: 80%;
justify-content: center;
display: none;
width: 100vw;
}
.stickybox {
display: inline;
position: sticky;
position: -webkit-sticky;
top: 0px;
.active {
color: rgba(184, 214, 240, 1);
}
.listtoggle {
text-decoration: none;
color: black;
font-size: 2.5rem;
margin-right: 7%;
cursor: pointer;
}
.toggle-wrapper {
display: inline-flex;
height: 100%;
width: 70%;
align-items: center;
justify-content: flex-end;
}
.menu-container, .dropdown-menu {
list-style: none;
}
.menubutton {
text-decoration: none;
display: inline-block;
padding: 20px;
color: white;
border-radius: 0%;
background-color: rgba(0,0,0,0);
width: 80%;
display: block;
padding: 2%;
color: white
}
.menubutton:hover {
border-radius: 0%;
animation-name: fadein;
animation-duration: 300ms;
background-color: darkblue;
}
.subitems:hover {
animation-name: fadein;
animation-duration: 300ms;
background-color: darkblue;
}
@media only screen and (min-width: 999px) {
.listtoggle, .toggle-wrapper {
display: none;
}
.dropdown-menu {
margin: 0;
padding: 0;
background-color: lightseagreen;
display: none;
list-style-type: none;
position: absolute;
min-width: 200px;
}
@keyframes fadein {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes growDown {
0% {
transform: scaleY(0)
.menu-wrapper {
display: inline-block;
}
80% {
transform: scaleY(1.1)
.menu-container {
display: inline-flex;
list-style-type: none;
width: 80%;
justify-content: center;
}
100% {
transform: scaleY(1)
.stickybox {
display: inline;
position: sticky;
position: -webkit-sticky;
top: 0px;
}
.menubutton {
text-decoration: none;
display: inline-block;
padding: 20px;
width: inherit;
color: white;
border-radius: 0%;
background-color: rgba(0,0,0,0);
}
.menubutton:hover {
border-radius: 0%;
animation-name: fadein;
animation-duration: 300ms;
background-color: darkblue;
}
.subitems:hover {
animation-name: fadein;
animation-duration: 300ms;
background-color: darkblue;
}
.dropdown-menu {
margin: 0;
padding: 0;
background-color: lightseagreen;
display: none;
list-style-type: none;
position: absolute;
min-width: 200px;
}
@keyframes fadein {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes growDown {
0% {
transform: scaleY(0)
}
80% {
transform: scaleY(1.1)
}
100% {
transform: scaleY(1)
}
}
@keyframes rotateMenu {
0% {
transform: rotateX(-90deg)
}
70% {
transform: rotateX(20deg)
}
100% {
transform: rotateX(0deg)
}
}
.dropdown:hover .dropdown-menu {
display: block;
animation: rotateMenu 300ms ease-in-out forwards;
}
.mainitems {
display: inline-block;
}
}
@keyframes rotateMenu {
0% {
transform: rotateX(-90deg)
}
70% {
transform: rotateX(20deg)
}
100% {
transform: rotateX(0deg)
}
}
.dropdown:hover .dropdown-menu {
display: block;
animation: rotateMenu 300ms ease-in-out forwards;
}
.mainitems {
display: inline-block;
}