Took 15 hours 7 minutes
This commit is contained in:
2022-11-17 00:46:19 +01:00
parent a356b39bad
commit c81713cd23
30 changed files with 4899 additions and 207 deletions

View File

@ -1,15 +1,21 @@
@import url("/stylesheets/colors.css");
@import url("/stylesheets/fonts.css");
@import url("/stylesheets/buttons.css");
@import url("/stylesheets/inputs.css");
@import url("/stylesheets/modal.css");
@import url("/stylesheets/main.css");
@import url("/stylesheets/setup.css");
:root {
cursor: none !important;
/*cursor: none !important;*/
}
html * {cursor: none !important}
html * {
/*cursor: none !important*/
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
body::-webkit-scrollbar {
@ -21,8 +27,17 @@ body {
color: white;
scroll-behavior: smooth;
font-family: "Roboto", serif;
font-style: normal;
cursor: none !important;
/*cursor: none !important;*/
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
h1 {
font-size: 1.7em;
font-weight: 500;
margin-bottom: 2%;
color: black;
}
@ -92,6 +107,15 @@ body {
border: 0;
border-radius: 0 8px 0 0;
color: white;
float: left;
}
#overlay #bottom #containers {
height: 100%;
width: 30%;
float: right;
/* todo */
}
@ -103,14 +127,20 @@ body {
height: 80%;
}
#menu {
display: none;
background-color: blue;
width: 100%;
.pane {
height: 100%;
padding: 1% 2%;
overflow: auto;
ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
scroll-behavior: smooth;
color: black;
}
.hiddenPane {
display: none !important;
transition: 0.2s;
}
#settings {
display: none;
@ -119,67 +149,3 @@ body {
height: 100vh;
}
#main::-webkit-scrollbar {
display: none;
}
#main {
display: grid;
height: 100%;
padding: 1% 2%;
grid-template-columns: repeat(3, calc(90% / 3));
grid-template-rows: repeat(2, calc(90% / 2));
grid-gap: 10% 5%;
overflow: auto;
ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
scroll-behavior: smooth;
}
#main .drink {
grid-row: span 1;
grid-column: span 1;
background-color: rgba(57, 57, 57, 0.6);
width: 90%;
height: 97%;
display: grid;
grid-template-columns: 100%;
grid-template-rows: repeat(3, calc(100% / 3));
grid-row-gap: 4%;
text-align: center;
border-radius: 30px 10px 30px;
color: black;
/*box-shadow: 3px 3px 3px;*/
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.29);
transition: 0.4s;
overflow: hidden;
padding-bottom: 1%;
}
#main .drink:hover {
background-color: rgba(57, 57, 57, 0.8);
width: 100%;
height: 100%;
}
.drink .thumbnail {
grid-column: span 1;
grid-row: span 2;
margin-left: auto;
margin-right: auto;
max-height: 100%;
overflow: hidden;
transition: 0.5s;
}
.drink .drinkName {
font-family: Ubuntu, sans-serif;
grid-column: span 1;
grid-row: span 1;
font-size: 150%;
}