<div class="displayBox">
<div class="candleBox">
<!-- CANDLES -->
<div class="lgCandle">
<div class="light">
<div class="wick"></div>
<div class="flameBox med">
<div class="flame"></div>
<div class="glow"></div>
</div>
</div>
</div>
<div class="mdCandle">
<div class="light">
<div class="wick"></div>
<div class="flameBox slow">
<div class="flame"></div>
<div class="glow"></div>
</div>
</div>
</div>
<div class="smCandle">
<div class="light">
<div class="wick"></div>
<div class="flameBox fast">
<div class="flame"></div>
<div class="glow"></div>
</div>
</div>
</div>
<!-- ORNAMENTS -->
<div class="ornament orna1">
<div class="silverOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna2">
<div class="capFull"></div>
<div class="silverOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna3">
<div class="cap"></div>
<div class="redOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna4">
<div class="cap"></div>
<div class="redOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna5">
<div class="silverOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna6">
<div class="cap"></div>
<div class="redOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna7">
<div class="silverOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
<div class="ornament orna8">
<div class="capFull"></div>
<div class="redOrnament">
<div class="spot"></div>
</div>
<div class="shadow"></div>
</div>
</div>
<div id="plate"></div>
</div>
body {
position: absolute;
bottom: 60px;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-content: center;
margin: 0;
background: transparent;
}
.displayBox {
min-width: 700px;
height: 100%;
position: relative;
display: flex;
justify-content: center;
}
.candleBox {
position: relative;
display: flex;
justify-content: center;
width: 375px;
bottom: 25px;
z-index: 1;
}
/*** CANDLES ***/
.lgCandle,
.mdCandle,
.smCandle {
position: absolute;
display: flex;
justify-content: center;
}
.lgCandle,
.mdCandle {
bottom: 50px;
}
.lgCandle:before,
.mdCandle:before,
.smCandle:before {
content: '';
position: absolute;
width: 100%;
border-radius: 100%;
background: rgb(249,26,18);
}
.lgCandle:after,
.mdCandle:after,
.smCandle:after {
content: '';
position: absolute;
width: 100%;
height: 30px;
border-radius: 100%;
bottom: -14px;
}
.lgCandle,
.lgCandle:after {
background: linear-gradient(90deg,
rgb(164,38,15),
rgb(245,1,1),
rgb(246,49,41),
rgb(215,7,7),
rgb(197,37,37),
rgb(199,17,16),
rgb(214,50,48),
rgb(209,26,18));
}
.lgCandle {
height: 260px;
width: 185px;
right: 0;
box-shadow: 0px 2px 6px rgba(159,94,52,1) inset,
0px 2px 6px rgba(159,94,52,0.55);
z-index: 3;
}
.lgCandle:before {
height: 22px;
top: -12px;
border-bottom: 1px solid rgb(207,14,15);
}
.lgCandle:after {
box-shadow: 0px 3px 3px rgba(46,2,3,0.3);
}
.mdCandle,
.mdCandle:after {
background: linear-gradient(90deg,
rgb(176,52,40),
rgb(203,63,64),
rgb(187,62,66),
rgb(167,13,13),
rgb(182,28,30),
rgb(220,6,4),
rgb(220,6,4),
rgb(247,50,42),
rgb(255,7,8),
rgb(242,13,10),
rgb(232,53,33));
}
.mdCandle {
height: 220px;
width: 140px;
left: 0;
box-shadow: 0px 2px 6px rgba(159,94,52,1) inset,
0px 2px 6px rgba(159,94,52,0.55);
z-index: 3;
}
.mdCandle:before {
height: 26px;
top: -13px;
background: linear-gradient(rgb(255,40,32),
rgb(255,35,29));
border-bottom: 1px solid rgb(205,16,14);
}
.mdCandle:after {
box-shadow: 0px 3px 3px rgba(46,2,3,0.3);
}
.smCandle,
.smCandle:after {
background: linear-gradient(90deg,
rgb(166,37,32),
rgb(178,35,31),
rgb(161,29,25),
rgb(152,12,12),
rgb(144,22,21),
rgb(166,0,0),
rgb(180,32,30),
rgb(193,13,12),
rgb(206,32,33),
rgb(213,14,7));
}
.smCandle {
height: 155px;
width: 185px;
bottom: 0;
box-shadow: 0px 0px 20px rgb(160,16,15);
z-index: 6;
}
.smCandle:before {
height: 30px;
top: -15px;
background: linear-gradient(rgb(255,16,15),
rgb(219,68,39),
rgb(251,13,11));
border-bottom: 1px solid rgb(173,4,1);
box-shadow: 0px 0px 8px rgba(160,16,15,0.6);
}
.smCandle:after {
box-shadow: 0px 3px 3px rgba(46,2,3,0.3);
}
/*** FLAME ***/
.flameBox {
height: 100px;
width: 50px;
position: absolute;
top: -103px;
left: 0;
right: 0;
margin: 0 auto;
animation-name: flame;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.slow {
animation-duration: 2s;
animation-delay: 5s;
}
.med {
animation-duration: 2s;
animation-delay: 2.5s;
}
.fast {
animation-duration: 2s;
animation-delay: .1s;
}
.flame {
width: 0;
height: 0;
position: relative;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 40px solid rgb(255,255,209);
margin: 0 auto;
transform: rotate(-6deg);
opacity: .9;
z-index: 2;
}
.flame:before {
content: '';
position: absolute;
width: 20px;
height: 53px;
background: rgb(255,255,209);
top: 30px;
right: -10px;
border-top-left-radius: 70%;
border-top-right-radius: 70%;
border-bottom-left-radius: 70%;
border-bottom-right-radius: 70%;
}
.flame:after {
content: '';
position: absolute;
width: 21px;
height: 50px;
background: rgb(255,255,209);
top: 40px;
right: -9px;
border-top-left-radius: 70%;
border-top-right-radius: 70%;
border-bottom-left-radius: 40%;
border-bottom-right-radius: 40%;
transform: rotate(8deg);
}
.glow {
width: 30%;
height: 50%;
background: linear-gradient(90deg,
rgb(253,236,104),
rgba(255,254,255,0.5),
rgb(253,236,104));
position: absolute;
left: 20px;
bottom: 25px;
border-radius: 100%;
transform: rotate(-2deg);
z-index: 1;
box-shadow: 0px 0px 35px 12px rgb(255,192,81);
animation-name: glow;
animation-duration: 3s;
animation-timing-function: linear;
animation-delay: .1s;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.wick {
width: 6px;
height: 30px;
border-left: 6px solid rgb(0,3,0);
position: relative;
top: -26px;
left: 6px;
border-top-right-radius: 50%;
border-top-left-radius: 50%;
z-index: 3;
}
/*** ORNAMENTS ***/
.ornament {
position: absolute;
bottom: 0;
}
.redOrnament,
.silverOrnament {
width: 90px;
height: 90px;
position: relative;
border-radius: 100%;
z-index: 2;
}
.redOrnament {
background: radial-gradient(rgb(159,1,2),
rgb(181,3,1),
rgb(151,44,28));
}
.silverOrnament {
background: radial-gradient(rgb(207,210,155),
rgb(128,138,101));
}
.silverOrnament:before,
.silverOrnament:after,
.redOrnament:before,
.redOrnament:after,
.spot,
.spot:before {
content: '';
position: absolute;
background: radial-gradient(rgba(255,255,255,0.27),
rgba(255,255,255,0.27));
border-radius: 100%;
box-shadow: 0 0 10px 8px rgba(255,255,255,0.27);
}
.silverOrnament:before,
.redOrnament:before {
width: 2px;
height: 25px;
bottom: 25px;
left: 15px;
}
.silverOrnament:after,
.redOrnament:after {
width: 2px;
height: 10px;
bottom: 28px;
left: 40px;
}
.spot {
width: 2px;
height: 15px;
bottom: 30px;
right: 11px;
}
.spot:before {
width: 30px;
height: 7px;
top: -26px;
right: 17px;
}
.cap {
width: 25px;
height: 20px;
z-index: 1;
}
.cap:before {
content: '';
width: 100%;
height: 3px;
border-radius: 100%;
top: -2px;
border-bottom: 1px solid rgba(199,184,115,.5);
}
.cap,
.cap:before {
position: absolute;
background: linear-gradient(90deg,
rgb(202,200,113),
rgb(234,197,108),
rgb(254,244,183),
rgb(180,169,89),
rgb(165,150,91),
rgb(103,108,54));
}
.cap:after {
content: '';
position: absolute;
width: 50%;
height: 50%;
border-radius: 100%;
border: 1px solid gold;
top: -10px;
z-index: -1;
margin: auto;
left: 0;
right: 0;
}
.capFull,
.capFull:before {
position: absolute;
border-radius: 100%;
}
.capFull {
width: 24px;
height: 24px;
background: radial-gradient(rgb(241,236,155),
rgb(187,163,115));
border-top: 1px solid rgba(134,89,47,0.3);
border-right: 1px solid rgba(134,89,47,0.3);
z-index: 9;
}
.capFull:before {
content: '';
background: rgb(140,137,70);
width: 22px;
height: 22px;
top: 3px;
right: 1px;
border-top: 1px solid rgb(147,132,63);
border-right: 1px solid rgb(102,88,41);
border-left: 1px solid rgb(185,185,125);
}
.capFull:after {
content: '';
background: linear-gradient(90deg,rgb(119,125,65),
rgb(232,195,106),
rgb(119,125,65));
position: absolute;
width: 75%;
height: 2px;
margin: auto;
left: 0;
right: 0;
bottom: 0;
top: 7px;
border: 1px solid rgb(119,125,65);
border-top: 1px solid transparent !important;
}
/** ORNAMENT PLACEMENT **/
.orna1 .silverOrnament,
.orna2 .silverOrnament,
.orna5 .silverOrnament,
.orna7 .silverOrnament {
box-shadow: -5px 2px 8px rgba(127,54,47,0.7) inset;
}
.orna3 .redOrnament,
.orna4 .redOrnament,
.orna6 .redOrnament,
.orna8 .redOrnament {
box-shadow: -3px 4px 6px rgba(150,19,11,0.7) inset,
-3px -9px 6px rgba(150,19,11,0.7) inset;
}
.orna5,
.orna6,
.orna7,
.orna8 {
transform: rotateY(180deg);
}
/* LEFT SIDE OF PLATE */
.orna1 {
left: -60px;
z-index: 2;
bottom: 80px;
}
.orna2 {
left: -95px;
bottom: 25px;
z-index: 4;
}
.orna2 .capFull,
.orna8 .capFull {
bottom: 22px;
left: 22px;
}
.orna3 {
left: 25px;
z-index: 5;
bottom: 15px;
}
.orna3 .cap {
top: -8px;
right: 22px;
transform: rotate(15deg);
}
.orna4 {
left: -25px;
z-index: 7;
bottom: -5px;
}
.orna4 .cap {
bottom: 8px;
right: -7px;
transform: rotate(120deg);
}
/* RIGHT SIDE OF PLATE */
.orna5 {
right: -45px;
z-index: 7;
bottom: 70px;
z-index: 2;
}
.orna6 {
right: -85px;
z-index: 7;
bottom: 40px;
}
.orna6 .cap {
bottom: 20px;
left: -10px;
transform: rotate(-110deg);
}
.orna7 {
right: -35px;
z-index: 7;
bottom: 13px;
}
.orna8 {
right: 5px;
z-index: 8;
bottom: 0px;
}
/** ORNAMENT SHADOW **/
.shadow {
position: absolute;
height: 30px;
width: 80px;
border-radius: 100%;
background: rgba(41,51,24,0.12);
bottom: -8px;
left: -12px;
box-shadow: 0px 0px 33px rgba(41,51,24,0.15);
}
/*** PLATE ***/
#plate,
#plate:before,
#plate:after {
width: 100%;
height: 150px;
position: absolute;
bottom: 0;
border-radius: 100%;
}
#plate {
background: linear-gradient(rgb(102,134,71),
rgb(110,145,77),
rgb(113,148,80),
rgb(91,107,58));
border-top: 4px solid rgb(114,146,83);
border-right: 1px solid rgb(77,99,37);
border-bottom: 5px solid rgb(164,94,60);
border-left: 1px solid rgb(98,132,71);
}
#plate:before {
content: '';
background: transparent;
border-bottom: 2px solid rgb(73,70,27);
border-left: 1px solid rgba(244,255,246,0.25);
border-right: 1px solid rgb(86,110,48);
}
#plate:after {
content: '';
background: rgb(116,151,83);
border-bottom: 1px solid rgb(125,115,64);
z-index: -1;
bottom: -10px;
width: 65%;
height: 50%;
margin: 0 auto;
left: 0;
right: 0;
box-shadow: 1px 1px 8px rgb(125,115,64);
}
/*** ANIMATIONS ***/
@keyframes flame {
0% {
transform: rotate(-2deg);
}
50% {
transform: rotate(5deg);
}
100% {
transform: rotate(0deg);
}
}
@keyframes glow {
0% {
filter: brightness(1.05);
}
50% {
filter: brightness(1);
}
100% {
filter: brightness(0.9);
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.