Martabak Box

Developer
Size
2,895 Kb
Views
44,528

How do I make an martabak box?

Pure CSS3 With Single elements. What is a martabak box? How do you make a martabak box? This script and codes were developed by Haeman on 29 August 2022, Monday.

Martabak Box Previews

Martabak Box - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Martabak Box</title> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ @import url(http://fonts.googleapis.com/css?family=Open+Sans);
html{ height: 100%;
}
body{ background: -webkit-radial-gradient(center, ellipse cover, #FCFCFC 0%,#D8D8D8 100%);	font-family: "Open Sans", Sans-serif;
}
.box{	width: 145px;	height: 100px;	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.39) 1%,rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.1) 100%), #CA8E50; background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.39) 1%,rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.1) 100%), #CA8E50; background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.39) 1%,rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.1) 100%), #CA8E50;	margin: 0px auto;	border: 1px solid #B16E38;	margin-top: 100px;	line-height: 90px;	text-indent: 10px; padding-left:5px;	font-size: 11px;	font-weight: bold;	color: #8B582F;	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
}
.box:after{
content: '';
width: 135px;
height: 100px;
background: rgba(255, 255, 255, 0);
margin: -25px 2px;
display: block;
position: absolute;
box-shadow: 0px 10px 40px #333;
-webkit-transform: perspective(500px) rotateX(75deg); -moz-transform: perspective(500px) rotateX(75deg); -o-transform: perspective(500px) rotateX(75deg);
z-index: -99;
}
.box:before{
content: '';
width: 136px;
height: 100px;
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 4%,white 5%,rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 100%), #E4AF78; background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 4%,white 5%,rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 100%), #E4AF78; background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 4%,white 5%,rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 100%), #E4AF78;
margin: -66px auto; margin-left:1px;
display: block;
border: 1px solid #B16E38;
-webkit-transform: perspective(500px) rotateX(75deg); -moz-transform: perspective(500px) rotateX(75deg); -o-transform: perspective(500px) rotateX(75deg);
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <div class='box'> martabak box
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Martabak Box - Script Codes CSS Codes

@import url(http://fonts.googleapis.com/css?family=Open+Sans);
html{ height: 100%;
}
body{ background: -webkit-radial-gradient(center, ellipse cover, #FCFCFC 0%,#D8D8D8 100%);	font-family: "Open Sans", Sans-serif;
}
.box{	width: 145px;	height: 100px;	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.39) 1%,rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.1) 100%), #CA8E50; background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.39) 1%,rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.1) 100%), #CA8E50; background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0.39) 1%,rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.1) 100%), #CA8E50;	margin: 0px auto;	border: 1px solid #B16E38;	margin-top: 100px;	line-height: 90px;	text-indent: 10px; padding-left:5px;	font-size: 11px;	font-weight: bold;	color: #8B582F;	text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
}
.box:after{
content: '';
width: 135px;
height: 100px;
background: rgba(255, 255, 255, 0);
margin: -25px 2px;
display: block;
position: absolute;
box-shadow: 0px 10px 40px #333;
-webkit-transform: perspective(500px) rotateX(75deg); -moz-transform: perspective(500px) rotateX(75deg); -o-transform: perspective(500px) rotateX(75deg);
z-index: -99;
}
.box:before{
content: '';
width: 136px;
height: 100px;
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 4%,white 5%,rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 100%), #E4AF78; background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 4%,white 5%,rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 100%), #E4AF78; background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 4%,white 5%,rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 100%), #E4AF78;
margin: -66px auto; margin-left:1px;
display: block;
border: 1px solid #B16E38;
-webkit-transform: perspective(500px) rotateX(75deg); -moz-transform: perspective(500px) rotateX(75deg); -o-transform: perspective(500px) rotateX(75deg);
}

Martabak Box - Script Codes JS Codes

//Martabak Box With Single elements
Martabak Box - Script Codes
Martabak Box - Script Codes
Home Page Home
Developer Haeman
Username pedox
Uploaded August 29, 2022
Rating 3.5
Size 2,895 Kb
Views 44,528
Do you need developer help for Martabak Box?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Haeman (pedox) Script Codes
Create amazing sales emails with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!