105 lines
2.5 KiB
HTML
105 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>paper with gold border</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #808080;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.paper {
|
|
width: 8.5in;
|
|
height: 11in;
|
|
#background-color: #808080;
|
|
background-color: rbga(0,0,0,0);
|
|
border: 8px solid #ffd700;
|
|
#box-shadow: 0 4px 8px rgba(0,0,0,0.3);
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.info {
|
|
width: 8.2in;
|
|
height: 10.7in;
|
|
#background-color: white;
|
|
background-color: rbga(0,0,0,0);
|
|
border: 8px solid #ffd700;
|
|
#box-shadow: 0 4px 8px rgba(0,0,0,0.3);
|
|
position: relative;
|
|
top: 7px;
|
|
left: 7px;
|
|
z-index: 1;
|
|
}
|
|
.corner-circle {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: #ffd700;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.corner-circle::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 60px;
|
|
background-color: #808080;
|
|
border-radius: 50%;
|
|
#top: 3px;
|
|
#left: 3px;
|
|
}
|
|
|
|
.top-left {
|
|
top: -14px;
|
|
left: -14px;
|
|
}
|
|
.top-left::after {
|
|
top: -10px;
|
|
left: -10px;
|
|
}
|
|
|
|
.top-right {
|
|
top: -14px;
|
|
right: -14px;
|
|
}
|
|
.top-right::after {
|
|
top: -10px;
|
|
right: -10px;
|
|
}
|
|
.bottom-left {
|
|
bottom: -14px;
|
|
left: -14px;
|
|
}
|
|
.bottom-left::after {
|
|
bottom: -10px;
|
|
left: -10px;
|
|
}
|
|
|
|
.bottom-right {
|
|
bottom: -14px;
|
|
right: -14px;
|
|
}
|
|
.bottom-right::after {
|
|
bottom: -10px;
|
|
right: -10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="paper">
|
|
<div class="corner-circle top-left"></div>
|
|
<div class="corner-circle top-right"></div>
|
|
<div class="corner-circle bottom-left"></div>
|
|
<div class="corner-circle bottom-right"></div>
|
|
<div class="info"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|