update
Took 25 hours 49 minutes
BIN
public/images/Blue Lagoon.png
Normal file
After Width: | Height: | Size: 353 KiB |
BIN
public/images/Caipirinha.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
public/images/Cosmopolitan.png
Normal file
After Width: | Height: | Size: 162 KiB |
BIN
public/images/Cubralibre.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
public/images/Gin Tonic.png
Normal file
After Width: | Height: | Size: 462 KiB |
BIN
public/images/Malibu Beach.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
public/images/Mezzo Mix.png
Normal file
After Width: | Height: | Size: 1020 KiB |
BIN
public/images/Mojito.png
Normal file
After Width: | Height: | Size: 611 KiB |
BIN
public/images/Moscow Mule.png
Normal file
After Width: | Height: | Size: 313 KiB |
BIN
public/images/Pina Colada.png
Normal file
After Width: | Height: | Size: 167 KiB |
BIN
public/images/Sex on the Beach.png
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
public/images/Swimming Pool.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
public/images/Tequila Sunrise.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
public/images/Wodka Bull.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
public/images/Wodka Cola.png
Normal file
After Width: | Height: | Size: 253 KiB |
BIN
public/images/Wodka Fanta.png
Normal file
After Width: | Height: | Size: 433 KiB |
BIN
public/images/Wodka Lemon.png
Normal file
After Width: | Height: | Size: 250 KiB |
BIN
public/images/Wodka O.png
Normal file
After Width: | Height: | Size: 794 KiB |
BIN
public/images/Zombie.png
Normal file
After Width: | Height: | Size: 116 KiB |
@ -5,7 +5,7 @@
|
||||
|
||||
|
||||
:root {
|
||||
cursor: none;
|
||||
cursor: none !important;
|
||||
}
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ body {
|
||||
scroll-behavior: smooth;
|
||||
font-family: "Roboto", serif;
|
||||
font-style: normal;
|
||||
cursor: none;
|
||||
cursor: none !important;
|
||||
}
|
||||
|
||||
|
||||
@ -40,15 +40,35 @@ body {
|
||||
height: 9%;
|
||||
background-color: #1F5E5F;
|
||||
color: white;
|
||||
font-size: 2em;
|
||||
padding-right: 3px;
|
||||
padding-left: 3px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
#title {
|
||||
float: right;
|
||||
width: 100%;
|
||||
font-size: 1.9em;
|
||||
text-align: center;
|
||||
float: left;
|
||||
width: calc(100% / 3);
|
||||
}
|
||||
|
||||
|
||||
#left {
|
||||
font-size: 0.5em;
|
||||
float: left;
|
||||
width: calc(100% / 3);
|
||||
text-align: left;
|
||||
padding-top: 1.2%;
|
||||
}
|
||||
|
||||
|
||||
#right {
|
||||
float: left;
|
||||
width: calc(100% / 3);
|
||||
text-align: right;
|
||||
font-size: 0.5em;
|
||||
padding-top: 1.2%;
|
||||
}
|
||||
|
||||
|
||||
@ -108,7 +128,7 @@ body {
|
||||
#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%;
|
||||
@ -122,26 +142,44 @@ body {
|
||||
#main .drink {
|
||||
grid-row: span 1;
|
||||
grid-column: span 1;
|
||||
background-color: black;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
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: 5%;
|
||||
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 .name {
|
||||
.drink .drinkName {
|
||||
font-family: Ubuntu, sans-serif;
|
||||
grid-column: span 1;
|
||||
grid-row: span 1;
|
||||
font-size: 140%;
|
||||
font-size: 150%;
|
||||
}
|