App Platform sample PHP application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

337 lines
6.4 KiB

body {
background: black !important;
}
.wishes {
width: 800px;
color: #fff;
display: flex;
flex-direction: column;
position: relative;
top: 428px;
margin: 0 auto;
form {
order: 3;
}
.chakra-stack {
order: 1;
font-family: "Patrick Hand", cursive;
font-weight: 400;
font-style: normal;
color: #fff;
.css-itvw0n {
font-size: 24px !important;
}
}
.css-1h4ws66 {
display: none;
.chakra-text {
display: none;
}
}
.chakra-alert {
color: #000;
}
hr {
display: none;
}
.chakra-input,
.chakra-textarea {
background: #fff;
color: #000;
}
.css-xdp1c1 {
display: none;
}
.chakra-button {
color: #000;
}
}
.title {
color: #fff;
font-family: "Pacifico", cursive;
font-weight: 400;
font-style: normal;
font-size: 72px;
margin: 0 auto;
display: block;
width: 735px;
}
@mixin foodColoring($color) {
background-color: $color;
box-shadow:
0 2px 0px lighten($color, 5%),
0 4px 0px darken($color, 8.2%),
0 6px 0px darken($color, 8.4%),
0 8px 0px darken($color, 8.6%),
0 10px 0px darken($color, 8.8%),
0 12px 0px darken($color, 9%),
0 14px 0px darken($color, 9.2%),
0 16px 0px darken($color, 9.4%),
0 18px 0px darken($color, 9.6%),
0 20px 0px darken($color, 9.8%),
0 22px 0px darken($color, 10%),
0 24px 0px darken($color, 10.2%),
0 26px 0px darken($color, 10.4%),
0 28px 0px darken($color, 10.6%),
0 30px 0px darken($color, 10.8%);
}
.cake {
position: absolute;
width: 250px;
height: 200px;
top: 200px;
left: 50%;
margin-left: -125px;
}
.plate {
width: 270px;
height: 110px;
position: absolute;
bottom: -10px;
left: -10px;
background-color: #ccc;
border-radius: 50%;
box-shadow:
0 2px 0 darken(#ccc, 10%),
0 4px 0 darken(#ccc, 10%),
0 5px 40px rgba(black, 0.5);
}
.cake > * {
position: absolute;
}
.layer {
position: absolute;
display: block;
width: 250px;
height: 100px;
border-radius: 50%;
@include foodColoring(#553c13);
}
.layer-top {
top: 0px;
}
.layer-middle {
top: 33px;
}
.layer-bottom {
top: 66px;
}
.icing {
top: 2px;
left: 5px;
background-color: #f0e4d0;
width: 240px;
height: 90px;
border-radius: 50%;
&:before {
content: "";
position: absolute;
top: 4px;
right: 5px;
bottom: 6px;
left: 5px;
background-color: lighten(#f0e4d0, 3%);
box-shadow:
0 0 4px lighten(#f0e4d0, 5%),
0 0 4px lighten(#f0e4d0, 5%),
0 0 4px lighten(#f0e4d0, 5%);
border-radius: 50%;
z-index: 1;
}
}
.drip {
display: block;
width: 50px;
height: 60px;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px;
background-color: #f0e4d0;
}
.drip1 {
top: 53px;
left: 5px;
transform: skewY(15deg);
height: 48px;
width: 40px;
}
.drip2 {
top: 69px;
left: 181px;
transform: skewY(-15deg);
}
.drip3 {
top: 54px;
left: 90px;
width: 80px;
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
}
.candle {
background-color: #7b020b;
width: 16px;
height: 50px;
border-radius: 8px / 4px;
top: -20px;
left: 50%;
margin-left: -8px;
z-index: 10;
&:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 16px;
height: 8px;
border-radius: 50%;
background-color: lighten(#7b020b, 10%);
}
}
.flame {
position: absolute;
background-color: orange;
width: 15px;
height: 35px;
border-radius: 10px 10px 10px 10px / 25px 25px 10px 10px;
top: -34px;
left: 50%;
margin-left: -7.5px;
z-index: 10;
box-shadow:
0 0 10px rgba(orange, 0.5),
0 0 20px rgba(orange, 0.5),
0 0 60px rgba(orange, 0.5),
0 0 80px rgba(orange, 0.5);
transform-origin: 50% 90%;
animation: flicker 1s ease-in-out alternate infinite;
}
@keyframes flicker {
0% {
transform: skewX(5deg);
box-shadow:
0 0 10px rgba(orange, 0.2),
0 0 20px rgba(orange, 0.2),
0 0 60px rgba(orange, 0.2),
0 0 80px rgba(orange, 0.2);
}
25% {
transform: skewX(-5deg);
box-shadow:
0 0 10px rgba(orange, 0.5),
0 0 20px rgba(orange, 0.5),
0 0 60px rgba(orange, 0.5),
0 0 80px rgba(orange, 0.5);
}
50% {
transform: skewX(10deg);
box-shadow:
0 0 10px rgba(orange, 0.3),
0 0 20px rgba(orange, 0.3),
0 0 60px rgba(orange, 0.3),
0 0 80px rgba(orange, 0.3);
}
75% {
transform: skewX(-10deg);
box-shadow:
0 0 10px rgba(orange, 0.4),
0 0 20px rgba(orange, 0.4),
0 0 60px rgba(orange, 0.4),
0 0 80px rgba(orange, 0.4);
}
100% {
transform: skewX(5deg);
box-shadow:
0 0 10px rgba(orange, 0.5),
0 0 20px rgba(orange, 0.5),
0 0 60px rgba(orange, 0.5),
0 0 80px rgba(orange, 0.5);
}
}
#balloon-container {
height: 100vh;
padding: 1em;
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
overflow: hidden;
transition: opacity 500ms;
position: fixed;
top: 0;
}
.audio {
position: absolute;
left: 50%;
margin-left: -137px;
top: 450px;
}
.balloon {
height: 125px;
width: 105px;
border-radius: 75% 75% 70% 70%;
position: relative;
}
.balloon:before {
content: "";
height: 75px;
width: 1px;
padding: 1px;
background-color: #fdfd96;
display: block;
position: absolute;
top: 125px;
left: 0;
right: 0;
margin: auto;
}
.balloon:after {
content: "";
text-align: center;
display: block;
position: absolute;
color: inherit;
top: 120px;
left: 0;
right: 0;
margin: auto;
}
@keyframes float {
from {
transform: translateY(100vh);
opacity: 1;
}
to {
transform: translateY(-300vh);
opacity: 0;
}
}